作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在许多系统上使用相同的 .vimrc 文件。我想绕过 vundle 安装一些我知道如果“if_lua”不存在将无法工作的模块。
有没有条件做的vim脚本方式
Bundle 'Shougo/neocomplete.vim'
只有在 vim 使用 lua 编译时才能避免启动错误:
$ 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
谢谢
最佳答案
if has('lua')
Bundle 'Shougo/neocomplete.vim'
end
关于vimrc 在 vundle BundleInstall 期间测试 if_lua,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23857469/
我在许多系统上使用相同的 .vimrc 文件。我想绕过 vundle 安装一些我知道如果“if_lua”不存在将无法工作的模块。 有没有条件做的vim脚本方式 Bundle 'Shougo/neoco
我正在尝试让 vundle 工作。这是我运行时遇到的错误:BundleInstall E117: 未知函数:vundle#installer#new 这是我的 .vim: . ├── bundle │
我是一名优秀的程序员,十分优秀!