From 0937182d49fa8db50cec42785f22f1031760a0bd Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Fri, 8 Apr 2022 15:18:45 +0100 Subject: patch 8.2.4713: plugins cannot track text scrolling Problem: Plugins cannot track text scrolling. Solution: Add the WinScrolled event. (closes #10102) --- src/vim.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/vim.h') diff --git a/src/vim.h b/src/vim.h index 4174fa0d7..f448ad010 100644 --- a/src/vim.h +++ b/src/vim.h @@ -1386,6 +1386,7 @@ enum auto_event EVENT_WINCLOSED, // after closing a window EVENT_VIMSUSPEND, // before Vim is suspended EVENT_VIMRESUME, // after Vim is resumed + EVENT_WINSCROLLED, // after Vim window was scrolled NUM_EVENTS // MUST be the last one }; -- cgit v1.2.1