From b2b9b78209d6ef77e97c43b448c74591cf20ebc5 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Fri, 19 Dec 2025 08:09:05 +0800 Subject: [PATCH] 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 --- runtime/tutor/en/vim-02-beginner.tutor | 3 ++- 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 index a594908d0d..295fcc2351 100644 --- a/runtime/tutor/en/vim-02-beginner.tutor +++ b/runtime/tutor/en/vim-02-beginner.tutor @@ -42,7 +42,7 @@ Test cases: {curly}, [square], , and "quoted" items. 4. Advanced combinations: - `ciwnew`{normal} - Change current word to "new" - - `yss"`{normal} - Wrap entire line in quotes (vim-surround plugin style) + - `ciw"-"`{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