diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-11-20 22:00:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-20 22:00:13 +0800 |
commit | 565442ec421eeef0abe915d23ba481e8b75c6c38 (patch) | |
tree | 574d5e54be89621d57cbd0b23b2a64250522355f /runtime | |
parent | 822eabc5e123bca71ba945467c3b01110bb0e003 (diff) | |
parent | d6bd9c77335e6a0b936e5b15f1b1df7e8af7cafd (diff) | |
download | rneovim-565442ec421eeef0abe915d23ba481e8b75c6c38.tar.gz rneovim-565442ec421eeef0abe915d23ba481e8b75c6c38.tar.bz2 rneovim-565442ec421eeef0abe915d23ba481e8b75c6c38.zip |
Merge pull request #21136 from zeertzjq/vim-9.0.0913
vim-patch:9.0.{partial:0913,0915}: only change in current window triggers the WinScrolled event
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/autocmd.txt | 31 |
1 files changed, 22 insertions, 9 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index c30c190301..b6c9253a41 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -1096,22 +1096,35 @@ WinNew When a new window was created. Not done for *WinScrolled* WinScrolled After scrolling the content of a window or - resizing a window. - The pattern is matched against the - |window-ID|. Both <amatch> and <afile> are - set to the |window-ID|. - Non-recursive (the event cannot trigger - itself). However, if the command causes the - window to scroll or change size another + resizing a window in the current tab page. + + When more than one window scrolled or resized + only one WinScrolled event is triggered. You + can use the `winlayout()` and `getwininfo()` + functions to see what changed. + + The pattern is matched against the |window-ID| + of the first window that scrolled or resized. + Both <amatch> and <afile> are set to the + |window-ID|. + + Only starts triggering after startup finished + and the first screen redraw was done. + + Non-recursive: the event will not trigger + while executing commands for the WinScrolled + event. However, if the command causes a + window to scroll or change size, then another WinScrolled event will be triggered later. + Does not trigger when the command is added, only after the first scroll or resize. ============================================================================== 6. Patterns *autocmd-pattern* *{aupat}* -The {aupat} argument of `:autocmd` can be a comma-separated list. This works -as if the command was given with each pattern separately. Thus this command: > +The {aupat} argument of `:autocmd` can be a comma-separated list. This works as +if the command was given with each pattern separately. Thus this command: > :autocmd BufRead *.txt,*.info set et Is equivalent to: > :autocmd BufRead *.txt set et |