runtime(doc): correct backslash escaping comma example Commit: https://github.com/vim/vim/commit/ab2fe65fbf2680af5f23112da9f8a83167e234bb Author: Qiming zhao <chem...@gmail.com> Date: Sat Apr 12 11:40:17 2025 +0200
runtime(doc): correct backslash escaping comma example closes: https://github.com/vim/vim/issues/17096 Signed-off-by: Qiming zhao <chem...@gmail.com> Signed-off-by: Christian Brabandt <c...@256bit.org> diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 8530196aa..a2f5f1f09 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 -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+unsubscr...@googlegroups.com. To view this discussion visit https://groups.google.com/d/msgid/vim_dev/E1u3XQB-00FowB-8n%40256bit.org.