]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): Update help tags references
authorChristian Brabandt <cb@256bit.org>
Sun, 15 Mar 2026 09:34:54 +0000 (09:34 +0000)
committerChristian Brabandt <cb@256bit.org>
Sun, 15 Mar 2026 09:35:35 +0000 (09:35 +0000)
related: #19691

Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/builtin.txt

index 21dc56c33d7452698266e6dd49549900c5ee3a4e..a327ba6c5d4b1076227fcf93ec11f4dd1e23544f 100644 (file)
@@ -11714,7 +11714,7 @@ system({expr} [, {input}])                              *system()* *E677*
                cooked mode.  This is meant to be used for commands that do
                not need the user to type.  It avoids stray characters showing
                up on the screen which require |CTRL-L| to remove.
-               When calling system() from a |statusline| expression, an
+               When calling system() from a 'statusline' expression, an
                |autocommand| or a |timer| callback, you should use |:silent|
                to avoid terminal responses (e.g. from cursor style queries)
                being echoed on the screen. >
@@ -11776,7 +11776,7 @@ systemlist({expr} [, {input}])                          *systemlist()*
                Returns an empty string on error.
 
                Like |system()|, prepend |:silent| when the command does not
-               need user interaction and is called from a |statusline|
+               need user interaction and is called from a 'statusline'
                expression, an |autocommand| or a |timer| callback.  See
                |system()| for details.