当离开INSERT模式时,Preview窗口会自动关闭

vimrc:

" If you prefer the Omni-Completion tip window to close when a selection is
" made, these lines close it on movement in insert mode or when leaving
" insert mode
autocmd CursorMovedI * if pumvisible() == 0|pclose|endif
autocmd InsertLeave * if pumvisible() == 0|pclose|endif

相关文章:

  • 2022-02-27
  • 2022-03-06
  • 2022-12-23
  • 2021-12-25
  • 2021-12-20
  • 2022-12-23
  • 2022-02-20
  • 2021-11-20
猜你喜欢
  • 2021-05-21
  • 2021-09-09
  • 2021-12-16
  • 2022-12-23
  • 2021-06-21
  • 2021-09-19
  • 2021-10-11
相关资源
相似解决方案