From: Qiming zhao Date: Sat, 12 Apr 2025 09:40:17 +0000 (+0200) Subject: runtime(doc): correct backslash escaping comma example X-Git-Tag: v9.1.1294~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab2fe65fbf2680af5f23112da9f8a83167e234bb;p=thirdparty%2Fvim.git runtime(doc): correct backslash escaping comma example closes: #17096 Signed-off-by: Qiming zhao Signed-off-by: Christian Brabandt --- diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 8530196aa3..a2f5f1f097 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -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