]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): correct backslash escaping comma example
authorQiming zhao <chemzqm@gmail.com>
Sat, 12 Apr 2025 09:40:17 +0000 (11:40 +0200)
committerChristian Brabandt <cb@256bit.org>
Sat, 12 Apr 2025 09:40:17 +0000 (11:40 +0200)
closes: #17096

Signed-off-by: Qiming zhao <chemzqm@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/options.txt

index 8530196aa36124b8168fbf1ca716bc8ffa0a4872..a2f5f1f0979fd2c5238fca540b77d62e2b177811 100644 (file)
@@ -1,4 +1,4 @@
-*options.txt*  For Vim version 9.1.  Last change: 2025 Apr 08
+*options.txt*  For Vim version 9.1.  Last change: 2025 Apr 12
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -212,7 +212,7 @@ A few examples: >
    :set makeprg=make,file          results in "make,file"
    :set makeprg=make\\,file        results in "make\,file"
    :set tags=tags,file             results in "tags" and "file"
-   :set tags=tags\\,file           results in "tags,file"
+   :set tags=tags\\,file           results in "tags\,file"
    :let &tags='tags\,file'         (same as above)
 
 The "|" character separates a ":set" command from a following command.  To