On Wed, December 23, 2009 12:54 pm, Tim Chase wrote: >> ^\([^; ]*\) > """ > zero or more "anything except a semicolon or space (or newline, > implicitly)" at the beginning of the line > """
Is that true? Does [ ] really match a newline? I don't think so and I can't find it in the help. To match the newline, you should prepend \_ to the collection, shouldn't you? regards, Christian -- You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php
