我在很多系统上使用相同的.vimrc文件。我想绕过vundle安装一些我知道如果' if_lua'不存在。
是否有条件执行的vim脚本
Bundle 'Shougo/neocomplete.vim'
只有在使用lua编译vim时才能避免启动错误:
$ vim myprogram.c
neocomplete does not work this version of Vim.
It requires Vim 7.3.885 or above and "if_lua" enabled Vim.
Press ENTER or type command to continue
THX
答案 0 :(得分:7)
if has('lua')
Bundle 'Shougo/neocomplete.vim'
end