Repeat last normal mode command, including moves, in Vim

25

5

In Vim, with ., I can repeat the last normal mode command; for example:

dd.

deletes a line twice.
But, if I type

5j.

the cursor does't move 10 lines down. How do I repeat the last normal mode command, especially a move?

juanpablo

Posted 2012-05-29T03:48:24.170

Reputation: 5 216

Answers

14

vim doesn't do this unfortunately. The best you can do is install the repmo.vim plugin, which repeats movement commands that have a count.

Paul

Posted 2012-05-29T03:48:24.170

Reputation: 52 173

12

it's doable even in vanilla vim, but applicability depends on your use case, ie. how often you'll need to repeat it, since it requires few more keystrokes to make it repeatable.


Option 1: turn it into a command mode operation

using moving down 5 lines as example, you can do:

  1. enter :norm 5j, it'll move the cursor down 5 lines
  2. use @: to repeat the movement

:norm stands for normal, any following string is regarded as your keystrokes under normal mode


Option 2: Use macro

  1. qa (store macro into register a, you can pick your own register like qb, qc)
  2. 5j
  3. q (finish recording macro)
  4. @a to repeat your recorded operation (replace a with the register name you picked, eg. @b, @c)

macro requires more spiritual power to set up but it's more repeatable in the sense that you can store multiple operations in different registers without being overriden by latest operations.

JK ABC

Posted 2012-05-29T03:48:24.170

Reputation: 221

7

Actually . repeats the last change, not the last normal mode command. As Paul said, you will need a plugin to allow you to repeat motions.

See ":help .".

Heptite

Posted 2012-05-29T03:48:24.170

Reputation: 16 267

4

You can repeat changes with .. Movements can be repeated with the ; command. This command seems to be new and does a similar thing to the repmo.vim script mentioned in other answers.

For example, to move to the second next c, press 2fc. Then to do it again, just type ;.

thirtythreeforty

Posted 2012-05-29T03:48:24.170

Reputation: 946

11; isn't new. It's a standard vi command. Vi remembers the type and target character (but not numerical argument) of the last f/F/t/ T motion and ; repeats it. It doesn't repeat other motions, however. – pyrocrasty – 2015-06-04T02:47:48.607

This accomplished what I was looking to do! thank you. and thank you @pyrocrasty for the clarification! – Paul – 2018-11-30T18:55:30.000

0

You can select the lines you want to change and execute last normal dot command

v5j .............. visual select next 5 lines
:'<,'>norm! .      normal mode execute over selection last command '.'

SergioAraujo

Posted 2012-05-29T03:48:24.170

Reputation: 211