]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): CI fails with trailing whitespace error in usr_30.txt
authorChristian Brabandt <cb@256bit.org>
Fri, 30 May 2025 18:14:16 +0000 (20:14 +0200)
committerChristian Brabandt <cb@256bit.org>
Fri, 30 May 2025 18:14:16 +0000 (20:14 +0200)
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/usr_30.txt

index 9efc2efa06ad639fbaeefdce3c5e125fbe5cee44..86fe649bdd7054ff507d6c15ebae47e937f70f73 100644 (file)
@@ -450,7 +450,7 @@ line, pressing <C-t> in Insert mode would indent the line by 4 spaces,
 a result impossible to get with the <Tab> key and 'tabstop' set to 8.
  To optimize space, `vi` would also silently remove packs of spaces and replace
 them with tab characters.  The following shows what happens pressing <C-t>
-a few times. 
+a few times.
   A "." stands for a space character and "------->" for a tab character.
 
        type                            result ~
@@ -466,7 +466,7 @@ with `set tabstop=8 shiftwidth=2` one has
        <C-t><Tab><C-t><C-d>            ------->
 
   A third option that one could set in `vi` was 'autoindent'.  It copies the
-indent level of the previous lines, 
+indent level of the previous lines,
 
        type                            result ~
        <Space><Tab>hello               .------>hello