diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-21 06:11:23 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-08-21 06:12:03 +0800 |
commit | 0c91cb4f03814bfdfe262c6d2693c6883c38719b (patch) | |
tree | 9ff51a7708101ad4607bb0a180bc88f70c2538b7 /runtime | |
parent | 7485fd0518557f7f49f9b636a80e4e3b523dd9dd (diff) | |
download | rneovim-0c91cb4f03814bfdfe262c6d2693c6883c38719b.tar.gz rneovim-0c91cb4f03814bfdfe262c6d2693c6883c38719b.tar.bz2 rneovim-0c91cb4f03814bfdfe262c6d2693c6883c38719b.zip |
vim-patch:9.0.1761: g<kEnd> behaves different from g<end>
Problem: g<kEnd> behaves different from g<end>
Solution: Make g<kEnd> behave like g<End>
closes: vim/vim#12861
https://github.com/vim/vim/commit/654bdbbd329e7267051cc2eb496bc52b66053081
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/motion.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/doc/motion.txt b/runtime/doc/motion.txt index a2f11d27ef..05244cde91 100644 --- a/runtime/doc/motion.txt +++ b/runtime/doc/motion.txt @@ -246,7 +246,8 @@ g$ When lines wrap ('wrap' on): To the last character of instead of going to the end of the line. When 'virtualedit' is enabled moves to the end of the screen line. - *g<End>* + + *g<End>* *g<kEnd>* g<End> Like |g$| but to the last non-blank character instead of the last character. |