我使用YouCompleteMe在 Vim 中自动完成。它不能与VimShell一起很好地工作,所以我想禁用它,只在 VimShell 缓冲区内。
如何从 Vimscript 禁用 YouCompleteMe 并启用NeoComplete?
我使用YouCompleteMe在 Vim 中自动完成。它不能与VimShell一起很好地工作,所以我想禁用它,只在 VimShell 缓冲区内。
如何从 Vimscript 禁用 YouCompleteMe 并启用NeoComplete?
YouCompleteMe 允许您配置文件类型白名单和黑名单,以启用或禁用给定文件类型的完成。
https://github.com/Valloric/YouCompleteMe#the-gycm_filetype_whitelist-option
Neocomplete 具有类似的功能,带有NeoCompleteUnlock
/ NeoCompleteLock
。
例如,要禁用 YouCompleteMe 并为 vimshell 文件类型启用 NeoComplete,您可以在 .vimrc 中使用类似这样的内容:
let g:ycm_filetype_blacklist = { 'vimshell': 1 }
autocmd FileType vimshell NeoCompleteUnlock
我无法对此进行测试,因为我不使用 vimshell。