commit c8fbb0d2ee05d05f5971b132c3b38cb0141db235
parent 4a706a70928231643e1a3f3fcf785de7aa930f8b
Author: zeertzjq <zeertzjq@outlook.com>
Date: Sat, 12 Apr 2025 18:08:57 +0800
vim-patch:ab2fe65: runtime(doc): correct backslash escaping comma example (#33433)
closes: vim/vim#17096
https://github.com/vim/vim/commit/ab2fe65fbf2680af5f23112da9f8a83167e234bb
Co-authored-by: Qiming zhao <chemzqm@gmail.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
@@ -156,7 +156,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