up vote 5 down vote favorite
1
share [g+] share [fb]

How do you yank all matching lines into a buffer?

Given a file like:

match 1
skip
skip
match 2
match 3
skip

I want to be able issue a command to yank all lines that match a pattern (/^match/ for this example) into a single buffer so that I can put it into another doc, or into a summary or whatever.

The command should wind up with this in a buffer:

match 1
match 2
match 3

My first thought was to try:

:g/^match/y

But I just get the last match. This makes sense, because the :g command is effectively repeating the y for each matching line.

Perhaps there is a way to append a yank to buffer, rather than overwriting it. I couldn't find it.

link|improve this question

1  
I have been doing this sort of thing all day and find the solution to be less that I would like. I do qaq followed by :g/pattern/normal "AY (didn't notice the :yank command before) then go to my buffer and paste it. Is there no straight forward way to redirect directly into a buffer? (Previously I'd been doing :redir @a :g/pattern/ :redir END, so this is certainly a step in the right direction, but I just want one. more. step...) :-) I suppose I could write a function easily enough... – dash-tom-bang Nov 9 '11 at 2:57
feedback

3 Answers

up vote 4 down vote accepted
:help registers
:help quote_alpha

Specify a capital letter as the register name in order to append to it, like :yank A.

link|improve this answer
Thanks for the pointer to the right part of the FM. I'll be reading it. – daotoad Sep 25 '09 at 17:20
feedback

:g/^match/yank A

link|improve this answer
6  
What's implicit here is that one cannot append to the unnamed buffer, at least not in a single command. You may also need to clear the buffer first: :let @a="" – J. A. Faucett Sep 25 '09 at 2:08
feedback

Oh I just realized after commenting above that it's easy to yank matching lines into a temporary buffer...

:r !grep "pattern" file.txt

The simplest solutions come once you've given up on finding them. :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.