Vi and Vim Macro Tutorial: How To Record and Play
by SathiyaMoorthy onUsing Vim Macro feature you can record and play a sequence of actions inside the editor.
This article explains how to perform record and play inside Vi and Vim editor using two detailed examples.
High Level Steps to Record and Play inside Vim
- Start recording by pressing q, followed by a lower case character to name the macro
- Perform any typical editing, actions inside Vim editor, which will be recorded
- Stop recording by pressing q
- Play the recorded macro by pressing @ followed by the macro name
- To repeat macros multiple times, press : NN @ macro name. NN is a number
Example 1: Sequence number generation inside a file using Vim Macro
1. Start a sequence-test.txt file to generate the sequence.
$ vim sequence-test.txt
2. Go to insert mode and type “1 .” as shown below
Type: Esc i followed by 1.$ vim sequence-test.txt 1.
3. Start the Recording and store it in register a.
Type: Esc q followed by a- q indicates to start the recording
- a indicates to store the recordings in register a
- When you do q a, it will display “recording” at the bottom of the vi.
4. Copy the 1st line to 2nd line to have two lines with 1 . as shown below
Type: Esc yy followed by p- yy will copy the current line
- p will paste the line that was just copied
$ vim sequence-test.txt 1. 1.Note: Vim will still show recording at the bottom as shown below.
Fig: Vim showing recording message at the bottom
5. Increment the number.
Type: Control aBy placing the cursor at the 2nd line, press Ctrl+a which increment the number to 2. as shown below.
$ vim sequence-test.txt 1. 2.Note: vim will still show recording at the bottom.
<!--
google_ad_client = "pub-8090601437064582";
/* TGS Inside Content Big */
google_ad_slot = "8006040097";
google_ad_width = 336;
google_ad_height = 280;
//-->google_protectAndRun("ads_core.google_render_ad", google_handleError, google_render_ad);6. Stop the recording
Type: qPress q to stop the recording. You’ll notice that recording message at the bottom of the vim is now gone.
7. Repeat the recording 98 times.
Type: 98@a- Now repeat this job, by typing 98 @ a
- @a repeats the macro “a” one time.
- 98@a repeats the macros “a” 98 times generating the sequence number 1 – 100 as shown below using macros.
Fig: Generate Sequence Number in Vim using Macro
Example 2: Repeat Vim Macro with different arguments
This example explains how you can executing the same command, with different input for it. i.e Framing the same command, with different arguments.Before Executing the Macro: change-password.sql
$ vim change-password.sql Annette Warren Anthony Preston Kelly Taylor Stiller Dennis Schwartz
After Recording and executing the Macro: change-password.sql
$ vim change-password.sql ALTER USER Annette IDENTIFIED BY 'Annette'; ALTER USER Warren IDENTIFIED BY 'Warren'; ALTER USER Anthony IDENTIFIED BY 'Anthony '; ALTER USER Preston IDENTIFIED BY 'Preston'; ALTER USER Kelly IDENTIFIED BY 'Kelly '; ALTER USER Taylor IDENTIFIED BY 'Taylor'; ALTER USER Stiller IDENTIFIED BY 'Stiller'; ALTER USER Dennis IDENTIFIED BY 'Dennis'; ALTER USER Schwart IDENTIFIED BY 'Schwart';
1. Open the change-password.sql that has only the names.
$ vim change-password.sql Annette Warren Anthony Preston Kelly Taylor Stiller Dennis Schwartz
2. Start the Recording and store it in register a
Type: q a- q indicates to start the recording
- a indicates to store the recordings in register a
- When you do q a, it will display the message recording at the bottom of the vi.
3. Go to Insert Mode and Type ALTER USER
Type: I (Upper case i) followed by “ALTER USER ”Place the cursor anywhere in the first line, and then press I. Which will take you to the first character of the line. Type ALTER USER
4. Copy the Next Word (i.e the name)
Type: Esc w yw- Press Esc, and then press w to go to the next word ( name ).
- yw, copies the current word ( name ).
5.Go to the end and type IDENTIFIED BY ‘
Type: Esc A followed by ” IDENTIFIED BY ‘”- Press Esc, and A to move the cursor to the end of the line, and then type space.
- Type IDENTIFIED BY ‘
6. Paste the copied Name
Type: Esc pPress Esc, and then type p to paste the name that was copied in the step #4.
7. Complete the quote at the end.
Type: Esc A followed by ‘;Press Esc, and A to go to the end of the line, and ‘;
8. Jump to the next line and stop the record.
Type: Esc j followed by q- j to move to the next line.
- q to stop the recording
Fig: Vim Macro completed the recording
9. Repete the Macro with the arguments in the corresponding line
Type: 8 @ a- Now repeat this job 8 times by typing 8@a
- @a repeats the macro “a” one time.
- 8@a repeats the macros “a” 8 times completing the rest of the line automatically as shown below
Fig: Vim Macro Play completed
Cool stuff you have got and you keep update all of us. schlüsseldienst in der nähe
ReplyDelete