vote up 5 vote down star
4

I have a file with a bunch of lines. I have recorded a macro that performs an operation on a single line. I want to repeat that macro on all of the remaining lines in the file. Is there a quick way to do this?

I tried Ctrl+Q, highlighted a set of lines, and pressed @@, but that didn't seem to do the trick.

flag

Offtopic question: I wasn't aware of VIM macros ( or didn't wanted to be aware :P ) Do you have some nice "lazy reader" oriented link on VIM macros? – Oscar Reyes Dec 23 '08 at 22:02
Sure, this: oreillynet.com/mac/blog/… sums it up pretty well. – j0rd4n Dec 23 '08 at 22:02
I think I'll read it ... later :P Tanks for the link +1 – Oscar Reyes Dec 23 '08 at 22:21

2 Answers

vote up 8 vote down check

Use the normal command in Ex mode to execute the macro on multiple/all lines:

Execute the macro stored in register a on lines 5 through 10.

:5,10norm! @a

Execute the macro stored in register a on lines all lines.

:%norm! @a

Enter :help normal in vim to read more.

link|flag
Adding a : first doesn't allow me to use @ – j0rd4n Dec 23 '08 at 22:05
Yes it does. You type the whole thing on the line and then press enter. – Judge Maygarden Dec 23 '08 at 22:06
Ah, it was the norm! part that I was missing. – j0rd4n Dec 23 '08 at 22:07
Do you have any good place where I can read about "norm!"? – j0rd4n Dec 23 '08 at 22:08
Yes, :help normal in vim or the link I just added. – Judge Maygarden Dec 23 '08 at 22:09
show 2 more comments
vote up -1 vote down

See this question: http://stackoverflow.com/questions/355907/how-do-i-repeat-an-edit-on-multiple-lines-in-vim

link|flag
This post doesn't tell how to apply a macro on multiple lines. It just says to record a macro or to perform a substitution on multiple lines. – j0rd4n Dec 23 '08 at 22:02

Your Answer

Get an OpenID
or

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