fix(events): avoid unnecessary CursorMoved (#24675)

Problem:    Temporarily changing current window in a script causes
            CursorMoved to be triggerd.
Solution:   Don't trigger CursorMoved if neither curwin nor cursor
            changed between two checks.
This commit is contained in:
zeertzjq
2023-08-12 09:50:17 +08:00
committed by GitHub
parent 6c07a189f2
commit 58a1ef8e6a
9 changed files with 44 additions and 24 deletions

View File

@@ -1030,7 +1030,8 @@ int autocmd_register(int64_t id, event_T event, const char *pat, int patlen, int
// If the event is CursorMoved, update the last cursor position
// position to avoid immediately triggering the autocommand
if (event == EVENT_CURSORMOVED && !has_event(EVENT_CURSORMOVED)) {
curwin->w_last_cursormoved = curwin->w_cursor;
last_cursormoved_win = curwin;
last_cursormoved = curwin->w_cursor;
}
// Initialize the fields checked by the WinScrolled and