7

我使用YouCompleteMe在 Vim 中自动完成。它不能与VimShell一起很好地工作,所以我想禁用它,只在 VimShell 缓冲区内。

如何从 Vimscript 禁用 YouCompleteMe 并启用NeoComplete

4

1 回答 1

13

YouCompleteMe 允许您配置文件类型白名单和黑名单,以启用或禁用给定文件类型的完成。

https://github.com/Valloric/YouCompleteMe#the-gycm_filetype_whitelist-option

Neocomplete 具有类似的功能,带有NeoCompleteUnlock/ NeoCompleteLock

https://github.com/Shougo/neocomplete.vim/blob/290b9532ae3a04b53f0d0ecdee34e2b664229939/doc/neocomplete.txt#L204

例如,要禁用 YouCompleteMe 并为 vimshell 文件类型启用 NeoComplete,您可以在 .vimrc 中使用类似这样的内容:

let g:ycm_filetype_blacklist = { 'vimshell': 1 }
autocmd FileType vimshell NeoCompleteUnlock

我无法对此进行测试,因为我不使用 vimshell。

于 2015-09-20T20:40:33.643 回答