1. 首先下载需要的几个工具homebrew,vundle,cmake (1). homebrew是mac os中的安装包管理工具,类似于Ubuntu上的apt-get和Fedora上的Yum。运行命令:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”
(2).vundle是Vim的插件管理器,安装参见链接https://github.com/gmarik/Vundle.vim
(3).cmake是一个跨平台的编译工具,运行命令brew install cmake安装。
2. 下载YouCompleteMe的源码,有两种方法:
(1). 运行命令git clone --recursive https://github.com/Valloric/YouCompleteMe.git下载YouCompleteMe源码到~/.vim/bundle目录下
(2).利用vundle下载源码,在.vimrc中添加Bundle 'Valloric/YouCompleteMe',保存后重启Vim然后输入命令:BundleInstall,就开始安装了。这个安装并没有包括编译,只是把ycm的vim、python以及C++代码下载下来。
3.编译的方法有两种: (1).然后进入YouCompleteMe代码目录开始编译,--clang-completer参数是启动C语言的提示,编译命令: cd ~/.vim/bundle/YouCompleteMe ./install.sh --clang-completer (2).编译: 在家目录下新建一个目录用来存放编译的结果文件 mkdir ycm_build cd ycm_build cmake -G "Unix Makefiles” . ~/.vim/bundle/YouCompleteMe/third_party/ycmd/cpp 此时makefiles已经生成到当前目录了,然后再运行make ycm_support_libs命令
4.到此基本就完成了,YouCompleteMe还支持很多的配置参数,具体参见官网说明http://valloric.github.io/YouCompleteMe/#full-installation-guide
两个参考的链接: http://blog.jobbole.com/58978/
http://crispgm.com/page/vim-youcompleteme.html