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.
