On Tue, Sep 11, 2018 at 10:37 PM Bram Moolenaar <[email protected]> wrote: > > > Patch 8.1.0369 > Problem: Continuation lines cannot contain comments. > Solution: Support using "\ . > Files: src/ex_cmds2.c, src/testdir/test_eval_stuff.vim, > runtime/indent/vim.vim, runtime/doc/repeat.txt
Typo in helpfile runtime/doc/repeat.txt, new lines 470-471. These lines disagree with the rest of the text below them. I'm attaching a patch. Best regards, Tony. -- -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout.
# HG changeset patch # User Tony Mechelynck <[email protected]> # Parent 8014307a918820085ed49a07995c3c4c10373ba1 Fix typo in comment continuation documentation diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt --- a/runtime/doc/repeat.txt +++ b/runtime/doc/repeat.txt @@ -462,18 +462,18 @@ flag when defining the function, it is n :function Foo() :1append \asdf . :endfunction :set cpo-=C < *line-continuation-comment* -To add a comment in between the lines start with '\" '. Notice the space -after the double quote. Example: > +To add a comment in between the lines start with '"\ '. Notice the space +after the backslash. Example: > let array = [ "\ first entry comment \ 'first', "\ second entry comment \ 'second', \ ] Rationale:
