vim插件YouCompleteMe时没有出现自动补全的情况

关于vim安装YouCompleteMe时没有出现自动补全的情况

  1. 我使用的vim插件管理器是 vim-plug, 其GitHub地址为 https://github.com/junegunn/vim-plug

  2. 在vimrc中写入

call plug#begin('~/.vim/plugged')
Plug 'ycm-core/YouCompleteMe'   " 代码自动补全
call plug#end()

nnoremap gd :YcmCompleter GoToDefinitionElseDeclaration
nnoremap g/ :YcmCompleter GetDoc
nnoremap gt :YcmCompleter GetType
nnoremap gr :YcmCompleter GoToReferences
let g:ycm_autoclose_preview_window_after_completion=0
let g:ycm_autoclose_preview_window_after_insertion=1
let g:ycm_use_clangd = 0
let g:ycm_python_interpreter_path = "/bin/python3"
let g:ycm_python_binary_path = "/bin/python3"

之后,在命令栏中输入 PlugInstall, 等待插件的安装,网络好的话用的时间不久,如果网络不好,可能会用很长时间

  1. 执行完了步骤1和步骤2之后,随便编写一个test.py依然没有自动补全,似乎没有用。
  2. 百度之后找到这篇帖子 https://www.cnblogs.com/Chan94/p/9607408.html ,就明白了自己还没有编译YCM,其实在启动VIM时,下面的状态栏也说明了The ycmd server SHUT DOWN (restart with ':YcmRestartServer'). YCM core library not de...; you need to compile YCM before using it. Follow the instructions in the documentation.自己没有编译
  3. 知道原因之后就编译YCM,直接在 ~/.vim/pluged/YouCompleteMe 中运行 install.py, 如果出现缺少依赖什么的,请参考 https://www.cnblogs.com/Chan94/p/9607408.html

总结

我用过的插件中除了 markdownpreview 之外,就属YouCompleteMe 不好安装了。
但是吧,安装上了是真的好用啊。

你可能感兴趣的:(错误记录,VIM编辑器,vim)