如何防止我的vim autocmd在命令行窗口中运行?

时间:2012-07-31 05:01:33

标签: vim

当我按照this answer中的描述离开插入模式时,我使用自动命令关闭预览窗口。但当我在命令行窗口(q:)时,我收到一个错误:E11: Invalid in the command-line window; <CR> executes, CTRL-C quits: :pclose|endif

如何防止此错误?

我尝试在命令行窗口和常规窗口中运行:set,但差异中没有明显的选项显示。

1 个答案:

答案 0 :(得分:6)

使用silent!来抑制错误:

autocmd CursorMovedI *  if pumvisible() == 0|silent! pclose|endif
autocmd InsertLeave * if pumvisible() == 0|silent! pclose|endif