show/hide this revision's text 2 added 121 characters in body

You can type a number before the @ to repeat the macro multiple times. You can also use

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.

show/hide this revision's text 1

You can type a number before the @ to repeat the macro multiple times. You can also 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