]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(tutor): Update Chapter 2, remove mentioning surround plugin
authorChristian Brabandt <cb@256bit.org>
Wed, 17 Dec 2025 22:13:36 +0000 (23:13 +0100)
committerChristian Brabandt <cb@256bit.org>
Wed, 17 Dec 2025 22:14:56 +0000 (23:14 +0100)
fixes: #18950

Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/tutor/en/vim-02-beginner.tutor
runtime/tutor/tutor2

index 0f2521e887207919d784934420fcf72fe59c7f34..46cbf75b3747eabe7aad00239e9743579d3886e8 100644 (file)
@@ -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
index 4b22d3db28b46538a373a76f0ad043c50e270243..47d030c87c780c7c7b0c2e8975df0bf475581791 100644 (file)
@@ -40,7 +40,7 @@
 
   4. Advanced combinations:
      - ciwnew<ESC>    - Change current word to "new"
-     - yss"<ESC>      - Wrap entire line in quotes (vim-surround plugin style)
+     - ciw"<Ctrl>-"<ESC> - (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
 
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~