vim9 安装 YCM

警告
本文最后更新于 2023-01-13,文中内容可能已过时。

vim9 配置 YCM 自动补全功能。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
cd ~/.vim/plugged
git clone https://github.com/ycm-core/YouCompleteMe.git
git submodule update --init --recursive

## 添加 ssl
vim ~/.vim/plugged/YouCompleteMe/third_party/ycmd/build.py
import ssl
ssl._create_default_https_context = ssl._create_unverified_context

python3 ./install.py --clang-completer --force-sudo  --verbose

## vim .vimrc
" ycm 指定 ycm_extra_conf.py
let g:ycm_global_ycm_extra_conf =  ‘xxxxxx/.ycm_extra_conf.py’
后面的路径是 YCM 插件目录里的 .ycm_extra_conf.py 文件的位置
比如 '~/.vim/plugged/YouCompleteMe/third_party/ycmd/.ycm_extra_conf.py'

相关内容

william 支付宝支付宝
william 微信微信
0%