Friday, July 19, 2013

Re: Copy matching line and following line to register

On 2013-07-19 23:08, Paul Isambert wrote:
> skeept <skeept@gmail.com> a écrit:
> > Following some vim tip, I can copy all the lines matching TODO to
> > a register u with
> >
> > quq -- clear register u
> > :g/TODO/y U -- append of the lines matching TODO to register u
> >
> > is there a similar way that I can append the line matching and
> > the line following the matching line, for each line that matches?
>
> Why not simply ":g/TODO/y U 2"?

or

:g/TODO/;+y U

which is short-hand for

:g/TODO/.;+1y

so you can adjust the yanked-range forward/backwards as you see fit,
such as "can I get the line before and after the match?" which would
be

:g/TODO/-,+y U

It looks a bit opaque to the uninitiated, but when you break it down,
it's pretty simple, and something that's a lot harder (if not
impossible) in other editors.

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

No comments:

Post a Comment