On 2013-03-12 08:30, James Kanze wrote: > function! FixParen() > s/( */( /g > s/ *)/ )/g > s/( *)/()/g > endfunction > > The problem is that when calling these over a range (the usual > procedure), vim invokes the function once per line; a lot of lines > don't have anything which needs fixing, and cause the message > "Pattern not found" to be emitted. Is there any way of inhibiting > this?
You can use the "e" flag to suppress this: s/( */( /ge which you can read about at :help :s_flags -tim -- -- You received this message from the "vim_use" 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_use" 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/groups/opt_out.
