From 1e3e1ba067c79aa2c7f0d53ed1e102089a29e692 Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Wed, 17 Dec 2025 23:13:36 +0100 Subject: [PATCH] runtime(tutor): Update Chapter 2, remove mentioning surround plugin fixes: #18950 Signed-off-by: Christian Brabandt --- runtime/tutor/en/vim-02-beginner.tutor | 3 ++- runtime/tutor/tutor2 | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/runtime/tutor/en/vim-02-beginner.tutor b/runtime/tutor/en/vim-02-beginner.tutor index 0f2521e887..46cbf75b37 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 diff --git a/runtime/tutor/tutor2 b/runtime/tutor/tutor2 index 4b22d3db28..47d030c87c 100644 --- a/runtime/tutor/tutor2 +++ b/runtime/tutor/tutor2 @@ -40,7 +40,7 @@ 4. Advanced combinations: - ciwnew - Change current word to "new" - - yss" - Wrap entire line in quotes (vim-surround plugin style) + - ciw"-" - (Note: This is Ctrl-Minus): wrap current word in quotes - gUit - Uppercase inner HTML tag content - va"p - Select quoted text and paste over it @@ -281,6 +281,7 @@ REFERENCE: Marks :h marks - "+/"* - System clipboard (OS dependent) - "_ - Blackhole (discard deleted/yanked text) - "= - Expression register + - "- - Small delete register ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- 2.47.3