up vote 15 down vote favorite
11
share [g+] share [fb]

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.

link|improve this question

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? – OscarRyz Dec 23 '08 at 22:02
Sure, this: oreillynet.com/mac/blog/2006/07/… 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 – OscarRyz Dec 23 '08 at 22:21
You can also check :he complex-repeat from inside vim – Sam Nov 17 '10 at 14:58
feedback

4 Answers

up vote 25 down vote accepted

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 all lines.

:%norm! @a

Enter :help normal in vim to read more.

link|improve this answer
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
2  
Nice!! Beginner tip: use V then j/k to highlight the lines you want, then type just :norm! @a – Kevin Bourrillion Sep 22 '11 at 4:22
show 4 more comments
feedback
 vim *.html
:bufdo %s/bgcolor="white"/bgcolor="#eeeeee"/g | :wall
:qall
link|improve this answer
feedback

There's also a plugin called RangeMacro, does exactly what you want! For everyone that can't guess by the name, what it does: it repeats a recorded macro for each line in a given range, no matter if by visual selection or by a :40,50 / :+10

See http://www.vim.org/scripts/script.php?script_id=3271

link|improve this answer
feedback

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

link|improve this answer
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
feedback

Your Answer

 
or
required, but never shown

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