In Vim, I usually want to repeat some series of commands some times. Say, I want to comment 5 lines, I would use
I//<Esc>j
.j.j.j.j
Is there any way to repeat the last ".j" part several times?
|
One way to do this is to assign your key sequence to a macro, then run the macro once followed by the
If you know how many times you want to repeat the macro, you can use |
|||
|
|
|
You can visually select the lines you want to repeat it on, type
However, if you're adding and removing
You can use |
|||
|
|
|
Regarding your specific example, I prefer to do multiple-line insertion using visual block mode (accessed with
I'd go to the top first character in the top line, hit
Also, there's a very handy commenter/un-commenter plugin that supports many languages here. It's easier than manually inserting/removing comments. |
|||||||||
|
|
For your particular example. you could also use a range |
|||
|
|
|
Another way to do it is to set marks and run substitutions over that range: ma jjjj mb :'a,'bs,^,// , |
|||
|
|
5,j? – C. Ross Jul 13 '10 at 20:23