Difference between revisions of "Recording macros in vim"
From Notes_Wiki
(Created page with "<yambe:breadcrumb>Vim|Vim</yambe:breadcrumb> =Recording macros in vim= It is possible to record a sequence of action in vim as a macro and then play it later to achieve the s...") |
(No difference)
|
Revision as of 00:52, 25 December 2012
<yambe:breadcrumb>Vim|Vim</yambe:breadcrumb>
Recording macros in vim
It is possible to record a sequence of action in vim as a macro and then play it later to achieve the same result.
Recording macro
To record a macro use following steps:
- Change mode to normal mode, if not already.
- Press 'q' to start recording
- Press a single letter alphabet to store the recoding into, eg 'a'
- Perform actions that should be recorded
- If at the end of actions you are not in normal mode than press 'Esc' to go to normal mode
- Press 'q' to stop recording
Playing macro
Once a macro is recorded it can be played using '@<alphabet>' key combination in normal mode where <alphabet> is the single letter alphabet where the recording was stored. The same macro can be played many times by using vim's repeat syntax '<number>@<alphabet>'