commit b2b9b78209d6ef77e97c43b448c74591cf20ebc5
parent 2860d1e018c87a8980ae3e2d16e5a11427df7f6c
Author: zeertzjq <zeertzjq@outlook.com>
Date: Fri, 19 Dec 2025 08:09:05 +0800
vim-patch:1e3e1ba: runtime(tutor): Update Chapter 2, remove mentioning surround plugin
fixes: vim/vim#18950
https://github.com/vim/vim/commit/1e3e1ba067c79aa2c7f0d53ed1e102089a29e692
Co-authored-by: Christian Brabandt <cb@256bit.org>
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/runtime/tutor/en/vim-02-beginner.tutor b/runtime/tutor/en/vim-02-beginner.tutor
@@ -42,7 +42,7 @@ Test cases: {curly}, [square], <angle>, and "quoted" items.
4. Advanced combinations:
- `ciwnew<ESC>`{normal} - Change current word to "new"
- - `yss"<ESC>`{normal} - Wrap entire line in quotes (vim-surround plugin style)
+ - `ciw"<CTRL>-"<ESC>`{normal} - (Note: This is Ctrl-Minus): wrap current word in quotes
- `gUit`{normal} - Uppercase inner HTML tag content
- `va"p`{normal} - Select quoted text and paste over it
@@ -276,6 +276,7 @@ REFERENCE: [Marks](marks)
- `"+`{normal}/`"*`{normal} - System clipboard (OS dependent)
- `"_`{normal} - Blackhole (discard deleted/yanked text)
- `"=`{normal} - Expression register
+ - `"-`{normal} - Small delete register
# CONCLUSION