Vim neocomplcache: отключить подсказку об использовании
Я использую Vim с плагином neocomplcache, его особенность использования подсказок во время завершения меня очень смутила.
Он вел себя так: я набрал <C-X><C-U>
когда курсор был в конце os.path.
, затем под строкой были указаны не только кандидаты на завершение, но и горизонтальный разделитель, содержащий строку документации первого кандидата. У меня вопрос: как избавиться от этой функции, чтобы я получал только завершение кода без запроса на использование?
1 ответ
Решение
Это все потому что preview
в completeopt
по умолчанию вы можете увидеть его значение по команде типа :set completeopt
и результат должен быть completeopt=menu,preview
,
То, что нам нужно, это просто menu
так порежь preview
, добавьте эту строку в ваш vimrc:
set completeopt-=preview
Справка по vim:
*'completeopt'* *'cot'*
'completeopt' 'cot' string (default: "menu,preview")
global
{not available when compiled without the
|+insert_expand| feature}
{not in Vi}
A comma separated list of options for Insert mode completion
|ins-completion|. The supported values are:
menu Use a popup menu to show the possible completions. The
menu is only shown when there is more than one match and
sufficient colors are available. |ins-completion-menu|
menuone Use the popup menu also when there is only one match.
Useful when there is additional information about the
match, e.g., what file it comes from.
longest Only insert the longest common text of the matches. If
the menu is displayed you can use CTRL-L to add more
characters. Whether case is ignored depends on the kind
of completion. For buffer text the 'ignorecase' option is
used.
preview Show extra information about the currently selected
completion in the preview window. Only works in
combination with "menu" or "menuone".