Glam Prestige Journal

Bright entertainment trends with youth appeal.

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?

1

5 Answers

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.

2

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.

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 .".

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 ;.

2

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 '.'

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy