I've found several answers on how to indent multiple lines in vim, I want to know how to take a single line and indent it more than once. In effect, I want a shorter version of the following command: ">>>>>>>>>>" (That is 10 right bracket "greater-than" signs.)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Select what you want (usually easiest with |
|||||||||||||||
|
|
You can select the current line by pressing |
|||
|
One of the answers to "How do I indent multiple lines quickly in vi" showed me a neat trick to remap
Then I just select the line (or lines) you want to indent and press the appropriate direction as many times as you want. |
|||
|

.to repeat the last command, shortening it to>>....– meagar Sep 13 '10 at 16:52<esc>:>>>>>– meagar Sep 13 '10 at 16:54