在vundle BundleInstall期间对if_lua进行vimrc测试

时间:2014-05-25 16:25:17

标签: vim lua vundle

我在很多系统上使用相同的.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

1 个答案:

答案 0 :(得分:7)

if has('lua')
    Bundle 'Shougo/neocomplete.vim'
end