我将yadr安装到我的终端上,但是当我打开Vim时,我会收到以下错误消息:
neocomplete does not work this version of Vim. It requires "if_lua" enabled Vim(7.3.885 or above).
编辑:
这固定了:
brew install macvim --with-cscope --with-lua --HEAD brew uninstall vim brew install vim --with-lua
如果运行前面的命令仍然不起作用:
当您使用brew安装vim时,可能没有将其安装到“正确”位置。在安装期间看看终端输出(brew install vim)应该告诉你这个位置。对我来说,brew在这里安装vim:
/usr/local/Cellar/vim/7.4.712
而当我运行vim时,我得到以下结果:
$ which vim /usr/bin/vim
所以你所要做的就是:
sudo cp /path/to/newly/installed/vim /path/to/old/vim
在我的情况下,我做了:
sudo cp /usr/local/Cellar/vim/7.4.712 /usr/bin/vim