suchen

Heim  >  Fragen und Antworten  >  Hauptteil

vimrc – Wie kann ich dafür sorgen, dass vim automatisch eine Abschluss-Dropdown-Liste anzeigt?

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.

仅有的幸福仅有的幸福2773 Tage vor939

Antworte allen(5)Ich werde antworten

  • 为情所困

    为情所困2017-05-16 16:39:11

    插件地址: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中那样,方便了很多!

    Antwort
    0
  • 仅有的幸福

    仅有的幸福2017-05-16 16:39:11

    推荐spf13—vim,一键安装,超强的配置。

    Antwort
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-16 16:39:11

    推荐Youcompleteme:https://github.com/Valloric/YouCompleteM...

    如果你是前端,可以看看我的配置:https://github.com/ruanyl/bigvim

    Antwort
    0
  • 高洛峰

    高洛峰2017-05-16 16:39:11

    补充: 如果是Python(主要写Python,其他很少),可以使用jedi-vim

    Antwort
    0
  • 仅有的幸福

    仅有的幸福2017-05-16 16:39:11

    有个插件叫做AutoComplPop,github上可以找到。

    Antwort
    0
  • StornierenAntwort