YouCompleteMe
概念
YouCompleteMe 插件是一种基于语义分析的补齐:通过分析源文件,经过语法分析以后进行智能补全。
简称 YCM,是一款 Vim 下非常流行的自动代码补齐神器。
安装依赖软件和库
编译 YouCompleteMe 插件时需要依赖 cmake 构建 Makefile,且依赖 Python 源码头文件,Ubuntu 系统可以使用以下命令安装相关依赖。
clang 是一个面向 C 族语言(C-family languages)的轻量级编译器,YouCompleteMe 插件依赖 clang 实现对 C 族语言的语义补全,
下载 YouCompleteMe 源码
使用 Vundle 或 vim-plug 等 Vim 插件管理器从 github 获取 YouCompleteMe 最新的源码,官方推荐使用 Vundle
基于Vundle安装 YouCompleteMe 源码
在~/.vimrc中加入以下
然后输入 :PluginInstall 进行
编译 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) 才可使用。
使用 Vundle 下载的 YouCompleteMe 源码保存在目录 ~/.vim/bundle/YouCompleteMe,在该目录下执行 .
即可编译具有C族语言的语义补全功能的 YouCompleteMe 插件。
至此,YouCompleteMe 插件已经安装完成
配置 YCM
ycm安装成功后,还不能代码补全提示,需要配置 .ycm_extra_conf.py
参考YCM自带的 YouCompleteMe/third_party/ycmd/examples/.ycm_extra_conf.py
设置全局配置文件,根据实际情况进行修改
```bash
$ cp YouCompleteMe/third_party/ycmd/examples/.ycm_extra_conf.py ~/
或
$ cp note/vim/.ycm_extra_conf.py ~/
$ vim /etc/vim/vimrc.local let g:ycm_global_ycm_extra_conf='~/.ycm_extra_conf.py'
YCM配置文件的查找顺序是当前目录>上层目录>...>根目录>全局配置文件 搜索头文件的顺序是:-I 指定目录、-isystem 指定目录、标准系统目录
此时正常进行语义补全!!!
vim配置(可选)
参考链接:
Last updated
Was this helpful?