Vim自动补齐插件YouCompleteMe安装指南
YouCompleteMe 简称 YCM,是一款 Vim 下非常流行的自动代码补齐神器。
一、Vim版本支持
最新 YouCompleteMe 插件需要 Vim 的版本至少是7.4.1578,并且需要支持 python2 或 python3 (Make sure you have Vim 7.4.1578 with Python 2 or Python 3 support)。
在 Linux 终端输入 vim --version 可查看当前 Vim 的版本和编译信息。如下图可知,当前 Vim 并不支持 python2或python3,因此需要重新编译和安装。
二、安装依赖软件和库
编译 YouCompleteMe 插件时需要依赖 cmake 构建 Makefile,且依赖 Python 源码头文件,Ubuntu 系统可以使用以下命令安装相关依赖。
sudo apt-get install build-essential cmake python-dev python3-dev
三、下载 YouCompleteMe 源码
可以使用 Vundle 或 vim-plug 等 Vim 插件管理器从 github 获取 YouCompleteMe 最新的源码,官方推荐使用 Vundle。
当然,也可以直接使用 git clone https://github.com/Valloric/YouCompleteMe.git ~/.vim/plugged/YouCompleteMe 下载 YouCompleteMe 源码到指定目录,使用 Vim 插件管理器下载的主要目的在于方便管理多个插件。
不管使用何种方式,在下载完源码后,建议在源码目录运行 git submodule update --init --recursive 来获取 YouCompleteMe 的相关依赖 (虽然使用 vundle 或 vim-plug 安装时都会下载所有的依赖)。
下载 YoucompleteMe 插件及其依赖所需要的时间比较长,耐心等待吧~
四、编译 YouCompleteMe
经历过上述3个步骤后,YouCompleteMe 插件还没法使用,此时打开 Vim 时会看到如下的报错:
The ycmd server SHUT DOWN (restart with ‘:YcmRestartServer’). YCM core library not detected; you need to compile YCM before using it. Follow the instructions in the documentation.
这是因为,YouCompleteMe 需要手工编译出库文件 ycm_core.so (以及依赖的libclang.so) 才可使用。
假设使用 vim-plug 下载的 YouCompleteMe 源码保存在目录 ~/.vim/plugged/YouCompleteMe,在该目录下执行 ./install.py --clang-completer 即可编译具有C族语言的语义补全功能的 YouCompleteMe 插件。 至此,YouCompleteMe 插件已经安装完成并可以正常使用了。
|