From ffe1a067df5b28726cc1ab7b440108c84a6e8624 Mon Sep 17 00:00:00 2001 From: Rom Grk Date: Sat, 24 Oct 2020 04:57:15 -0400 Subject: docs: add documentation for Scroll autocmd --- runtime/doc/autocmd.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'runtime/doc') diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index a6872d0af5..12bd48fdd1 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -800,6 +800,9 @@ RemoteReply When a reply from a Vim that functions as Note that even if an autocommand is defined, the reply should be read with |remote_read()| to consume it. + *Scroll* +Scroll After scrolling the viewport. + *SessionLoadPost* SessionLoadPost After loading the session file created using the |:mksession| command. -- cgit From e606654ac24f492cf53d696647aee7b0526ed080 Mon Sep 17 00:00:00 2001 From: Rom Grk Date: Wed, 28 Oct 2020 04:49:49 -0400 Subject: doc: update doc: s/Scroll/WinScrolled/ --- runtime/doc/autocmd.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'runtime/doc') diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index 12bd48fdd1..75cdc71039 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -800,9 +800,6 @@ RemoteReply When a reply from a Vim that functions as Note that even if an autocommand is defined, the reply should be read with |remote_read()| to consume it. - *Scroll* -Scroll After scrolling the viewport. - *SessionLoadPost* SessionLoadPost After loading the session file created using the |:mksession| command. @@ -1009,6 +1006,9 @@ WinLeave Before leaving a window. If the window to be WinNew When a new window was created. Not done for the first window, when Vim has just started. Before WinEnter. + *WinScrolled* +WinScrolled After scrolling the viewport. + ============================================================================== 6. Patterns *autocmd-pattern* *{pat}* -- cgit From 0fce70252d8e5ccf4cb6f141d1c388966f9f3482 Mon Sep 17 00:00:00 2001 From: Rom Grk Date: Sat, 7 Nov 2020 06:25:07 -0500 Subject: doc: fix WinScrolled details --- runtime/doc/autocmd.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'runtime/doc') diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index 66d15d446a..dbaba1b3ad 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -1012,7 +1012,8 @@ WinNew When a new window was created. Not done for the first window, when Vim has just started. Before WinEnter. *WinScrolled* -WinScrolled After scrolling the viewport. +WinScrolled After scrolling the viewport of the current + window. ============================================================================== -- cgit