下图就是我的VI;
按F5 F6分别调出左右的窗体;
按C-P点出CtrlP搜索,直接查找project中的文件;
自己主动补全用的YouCompleteMe。超级强悍;
https://github.com/humiaozuzu/dot-vimrc
https://github.com/spf13/spf13-vim
https://github.com/amix/vimrc
我就是先依据第一个连接做的。
然后又增加了下面改动(是不是非常懒 哈哈哈):
在.vimrc 中增加下面代码:
Bundle ‘Valloric/YouCompleteMe’
保存退出后,打开vim 在命令模式下,输入以下的命令:
:BundleInstall
等待vundle将YCM安装完毕。然后进行编译安装
#cd ~/.vim/bundle/YouCompleteMe
#./install –clang-completer
提示err:
Some folders in~/.vim/bundle/YouCompleteMe/third_party/ycmd/third_party are empty;you probablyforgot to run:git submodule update –init –recursive
依照提示输入命令就可以:
# git submodule update –init –recursive
等待命令更新完毕后,在继续前面的命令假设要支持C# 也能够增加--omnisharp-completer
#./install--clang-completer –omisharp-completer
提示err:
CMAKE_CXX_COMOILER-NOTFOUND
输入下面命令解决:
#apt-getinstall g++
#cmake –DCMAKE_CXX_COMPILER=”g++” CMAKE –D CMAKE_BUILD_TYPE=Release –DCMAKE_INSTALL_PREFIX=”/usr/local”
提示err:
Cmake “couldnot find pythonlibs”
输入下面命令解决:
#apt-getinstall python-dev
然后在运行 安装就OK了
配置
配置文件在:
/bundle/YouCompleteMe/third_party/ycmd/cpp/ycm/.ycm_extra_conf.py
特将vimrc上传:
http://download.csdn.net/detail/maoyongf2008/8899641