From c8fbb0d2ee05d05f5971b132c3b38cb0141db235 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Sat, 12 Apr 2025 18:08:57 +0800 Subject: [PATCH] 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 --- runtime/doc/options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 6fc0d3be41..8be108540e 100644 --- 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