将光标移动到窗口时会触发什么autocmd事件?

时间:2017-04-12 03:47:49

标签: vim

当我们使用CTRL-W W在打开的窗口(拆分)之间移动时会触发什么事件?

                                                *CTRL-W_W*
CTRL-W W        Without count: move cursor to window above/left of current
            one.  If there is no window above or left, go to bottom-right
            window.  With count: go to Nth window (windows are numbered
            from top-left to bottom-right).

我使用了BufEnterBufWinEnterFocusGainedWinEnterCmdwinEnterTabEnter。但是他们都没有触发自动命令。

目前,我被迫在窗口之间alt-tab可靠地触发autocommand

1 个答案:

答案 0 :(得分:2)

正确的事件是WinEnter。如果这对您不起作用(启用了插件),请检查'eventignore'选项。