私の場合、プラグインによってプレビューウィンドウが開かれました。そこで、プラグイン構成を使用してこれらのウィンドウを自動的に閉じました。
スーパータブ
アレックス・クロールが示唆したように:
let g:SuperTabClosePreviewOnPopupClose = 1
YouCompleteMe
let g:ycm_autoclose_preview_window_after_insertion = 1
let g:ycm_autoclose_preview_window_after_completion = 1
2番目の変数が設定されている場合、最初の変数は効果がありません。ドキュメントから:
The *g:ycm_autoclose_preview_window_after_completion* option
When this option is set to '1', YCM will auto-close the 'preview' window after
the user accepts the offered completion string. If there is no 'preview' window
triggered because there is no 'preview' string in 'completeopt', this option is
irrelevant. See the |g:ycm_add_preview_to_completeopt| option for more details.
Default: '0'
>
let g:ycm_autoclose_preview_window_after_completion = 0
<
-------------------------------------------------------------------------------
The *g:ycm_autoclose_preview_window_after_insertion* option
When this option is set to '1', YCM will auto-close the 'preview' window after
the user leaves insert mode. This option is irrelevant if
|g:ycm_autoclose_preview_window_after_completion| is set or if no 'preview'
window is triggered. See the |g:ycm_add_preview_to_completeopt| option for more
details.
Default: '0'
>
let g:ycm_autoclose_preview_window_after_insertion = 0
Ctrl
少ない迷惑が再マッピングされるCaps Lock
までCtrl
保存しておきたい場合は、それらを交換するCaps Lock
利用可能。