微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Make YouCompeleteMe work with vim

YouCompeleteMe is very powerful vim plugin for compeletion.

Unfortunately,the default vim you installed probably don't support YouCompeleteMe. After adding config entries in .vimrc for YCM,you may get the warning below when open vim:

youcompleteme unavailable: requires vim compiled with python (2.6+ or 3.3+) support

You need to build vim with python support. Follow this doc: Building Vim from source I'm using openSUSE,but this doc doesn't list zypper command to install prerequisites.

  • install packages
zypper install libncurses5 libgnome-devel libgnomeui-devel libgtk-2_0-0 libatk-1_0-0 \  libbonoboui-devel libcairo2 libX11-devel libXpm-devel libXt-devel python \  
python-devel python3 python3-devel ruby-devel perl perl-devel lua51 lua51-devel git
  • clone vim
git clone https://github.com/vim/vim.git
  • config,build and install vim
cd vim 
./configure --with-features=huge \
            --enable-multibyte \
            --enable-rubyinterp \
            --enable-pythoninterp \
            --with-python-config-dir=/usr/lib/python2.7/config \
            --enable-perlinterp \
            --enable-luainterp \
            --enable-gui=gtk2 --enable-cscope --prefix=/usr

make VIMRUNTIMEDIR=/usr/share/vim/vim74
sudo make install

sudo update-alternatives --install /usr/bin/editor editor /usr/bin/vim 1
sudo update-alternatives --set editor /usr/bin/vim
sudo update-alternatives --install /usr/bin/vi vi /usr/bin/vim 1
sudo update-alternatives --set vi /usr/bin/vim
  • build YCM
cd .vim/bundle/YouCompleteMe
zypper install gcc-c++ cmake
./install.py

Open vim and edit something to test it. Enjoy!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐