vim-patch:ab2fe65: runtime(doc): correct backslash escaping comma example (#33433)

closes: vim/vim#17096

ab2fe65fbf

Co-authored-by: Qiming zhao <chemzqm@gmail.com>
This commit is contained in:
zeertzjq
2025-04-12 18:08:57 +08:00
committed by GitHub
parent 4a706a7092
commit c8fbb0d2ee

View File

@@ -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