Wenn Sie bei Verwendung von vim ein Wort automatisch vervollständigen müssen, müssen Sie <Strg+p> oder <Strg+n> Soll die Dropdown-Liste automatisch angezeigt werden? Das heißt, beim Tippen wird automatisch eine Vervollständigungs-Dropdown-Liste angezeigt.
插件地址:http://www.vim.org/scripts/script.php?sc...
下载后,把它放到.vim/plugin目录就可以了。
可以对下面两个选项进行配置,以调整SuperTab的缺省行为:
g:SuperTabRetainCompletionType的值缺省为1,意为记住你上次的补全方式,直到使用其它的补全命令改变它;如果把它设成2,意味着记住上次的补全方式,直到按ESC退出插入模式为止;如果设为0,意味着不记录上次的补全方式。
g:SuperTabDefaultCompletionType的值设置缺省的补全方式,缺省为CTRL-P。
你可以在vimrc中设置这两个变量,例如:
let g:SuperTabRetainCompletionType = 2
let g:SuperTabDefaultCompletionType = "<C-X><C-O>"
现在你可以使用TAB来进行补全了,就像在shell中那样,方便了很多!
推荐spf13—vim,一键安装,超强的配置。
推荐Youcompleteme:https://github.com/Valloric/YouCompleteM...
如果你是前端,可以看看我的配置:https://github.com/ruanyl/bigvim
补充: 如果是Python(主要写Python,其他很少),可以使用jedi-vim
有个插件叫做AutoComplPop,github上可以找到。