Sunday, June 16, 2013

Re: g[lobal] with s[ubstitute]

On Sunday, June 16, 2013 6:12:54 PM UTC-5, Bee wrote:
> g[lobal] with s[ubstitute]
>
>
>
> I used the following to replace ';' with '; ' only in lines with '}'
>
>
>
> It works, but if I want to stop early using 'q' it does not quit, I
>
> must use ^C.
>
>
>
> Also if I use 'a' to replace all, search/replace does not exit, again
>
> needing ^C.
>
>
>
> :g/}/s/;/; /gc
>

This will apply a 1-line substitute to every line containing a }.

I would find a way to include the } in the pattern and use a full-file range %.

Something like:

:%s#.*}\&\(.*\);#; #gc

--
--
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 vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

No comments: