Recently I installed a new vim version on my system to get rid of the following warning:
1 2 |
neocomplete does not work with this version of Vim. It requires Vim 7.3.885 or later with Lua support ("+lua") |
Solution
Install homebrew if you don’t have it installed already.
1 2 3 4 5 6 7 |
brew update brew unlink macvim brew install macvim --with-cscope --with-lua --HEAD brew unlink vim brew uninstall vim brew install vim --with-lua brew info vi |