In VIM, how do I apply a macro to a set of lines? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T22:43:14Zhttp://stackoverflow.com/feeds/question/390174http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/390174/in-vim-how-do-i-apply-a-macro-to-a-set-of-lines5In VIM, how do I apply a macro to a set of lines?j0rd4n2008-12-23T21:51:28Z2008-12-23T22:07:15Z
<p>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?</p>
<p>I tried Ctrl+Q, highlighted a set of lines, and pressed @@, but that didn't seem to do the trick.</p>
http://stackoverflow.com/questions/390174/in-vim-how-do-i-apply-a-macro-to-a-set-of-lines/390184#390184-1Answer by Can Berk Güder for In VIM, how do I apply a macro to a set of lines?Can Berk Güder2008-12-23T21:56:33Z2008-12-23T21:56:33Z<p>See this question: <a href="http://stackoverflow.com/questions/355907/how-do-i-repeat-an-edit-on-multiple-lines-in-vim">http://stackoverflow.com/questions/355907/how-do-i-repeat-an-edit-on-multiple-lines-in-vim</a></p>
http://stackoverflow.com/questions/390174/in-vim-how-do-i-apply-a-macro-to-a-set-of-lines/390194#3901948Answer by Judge Maygarden for In VIM, how do I apply a macro to a set of lines?Judge Maygarden2008-12-23T22:02:04Z2008-12-23T22:07:15Z<p>Use the <a href="http://vimdoc.sourceforge.net/htmldoc/various.html#:normal" rel="nofollow">normal</a> command in Ex mode to execute the macro on multiple/all lines:</p>
<p>Execute the macro stored in register <strong>a</strong> on lines 5 through 10.</p>
<pre><code>:5,10norm! @a
</code></pre>
<p>Execute the macro stored in register <strong>a</strong> on lines all lines.</p>
<pre><code>:%norm! @a
</code></pre>
<p>Enter <em>:help normal</em> in vim to read more.</p>