commit | 0937182d49fa8db50cec42785f22f1031760a0bd | [log] [tgz] |
---|---|---|
author | LemonBoy <thatlemon@gmail.com> | Fri Apr 08 15:18:45 2022 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Apr 08 15:18:45 2022 +0100 |
tree | a41ab36fcbeb5b2f0bc91ce36b2d056af2ec2491 | |
parent | 18ee0f603ebd3c091f6d2ab88e652fda32821048 [diff] [blame] |
patch 8.2.4713: plugins cannot track text scrolling Problem: Plugins cannot track text scrolling. Solution: Add the WinScrolled event. (closes #10102)
diff --git a/src/vim.h b/src/vim.h index 4174fa0..f448ad0 100644 --- a/src/vim.h +++ b/src/vim.h
@@ -1386,6 +1386,7 @@ 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 };