aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-06-21 14:35:24 +0800
committerGitHub <noreply@github.com>2024-06-21 14:35:24 +0800
commita5d8e5336a0bc21c1841d45d47befb94ca2b54f4 (patch)
treee489e3436ef4da30720292df277ca35dc64cffdd /runtime
parent26c2a56d99f9435d6a32e42c9508cafc37ab7d72 (diff)
parentf45403db19d888266d1cc04756bfef20a26f9f7f (diff)
downloadrneovim-a5d8e5336a0bc21c1841d45d47befb94ca2b54f4.tar.gz
rneovim-a5d8e5336a0bc21c1841d45d47befb94ca2b54f4.tar.bz2
rneovim-a5d8e5336a0bc21c1841d45d47befb94ca2b54f4.zip
Merge pull request #29436 from zeertzjq/vim-9.1.0507
vim-patch:9.1.{0507,0511}: CursorMovedC autocommand
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/autocmd.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt
index ca816851dd..089316aec1 100644
--- a/runtime/doc/autocmd.txt
+++ b/runtime/doc/autocmd.txt
@@ -522,6 +522,14 @@ CursorMoved After the cursor was moved in Normal or Visual
Careful: This is triggered very often, don't
do anything that the user does not expect or
that is slow.
+ *CursorMovedC*
+CursorMovedC After the cursor was moved in the command
+ line while the text in the command line hasn't
+ changed. Be careful not to mess up the
+ command line, it may cause Vim to lock up.
+ <afile> is set to a single character,
+ indicating the type of command-line.
+ |cmdwin-char|
*CursorMovedI*
CursorMovedI After the cursor was moved in Insert mode.
Not triggered when the popup menu is visible.