VIM Macros
Macros A macro in Vim is simply a sequence of recorded commands. Q โ Starts recording a macro. Perform actions, then press Q again to stop recording. @a โ Replays the macro recorded in register a. ๐ Editing a Macro Create a new buffer: 1 :new Paste the contents of the macro from register a: 1 :put a Edit the macro content: A โ Move to end of line in normal mode....