aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-07-08 06:55:21 +0800
committerGitHub <noreply@github.com>2024-07-08 06:55:21 +0800
commit76b91106fc836ae634cdf8425d121d843d14d70a (patch)
tree7f7583c4f7e0f2048650c3e2e5b9346922d0d2a4 /runtime
parent055a222797e46a046a365707e4e0dc957e46c648 (diff)
downloadrneovim-76b91106fc836ae634cdf8425d121d843d14d70a.tar.gz
rneovim-76b91106fc836ae634cdf8425d121d843d14d70a.tar.bz2
rneovim-76b91106fc836ae634cdf8425d121d843d14d70a.zip
vim-patch:9.1.0543: Behavior of CursorMovedC is strange (#29608)
Problem: Behavior of CursorMovedC is strange. Solution: Also trigger when the cmdline has changed. (zeertzjq) fixes: vim/vim#15069 closes: vim/vim#15071 https://github.com/vim/vim/commit/8145620a958dbb5c82cf8f8a37556ee1ea501c6d
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/autocmd.txt9
1 files changed, 3 insertions, 6 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt
index 089316aec1..8e5e2628de 100644
--- a/runtime/doc/autocmd.txt
+++ b/runtime/doc/autocmd.txt
@@ -524,12 +524,9 @@ CursorMoved After the cursor was moved in Normal or Visual
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|
+ line. Be careful not to mess up the command
+ line, it may cause Vim to lock up.
+ <afile> expands to the |cmdline-char|.
*CursorMovedI*
CursorMovedI After the cursor was moved in Insert mode.
Not triggered when the popup menu is visible.