How can I add and remove tabs in normal mode in vim? Also, how can I add and remove tabs in visual mode (like selecting a code block in a regular editor and hitting tab or shift tab?
Tell me more
×
Super User is a question and answer site for
computer enthusiasts and power users. It's 100% free, no registration required.
|
in visual mode: select some text, usually a line with V and then hit Shift > or Shift < (to untab) edit: if it's a line you want to indent then you don't have to select a line, just put the cursor on any line and hit the above shortcuts. |
|||
|
|
|
That would be the < and > commands. Examples:
Shift the current line one tab to the right
Shift the next ten lines one to the left
Shift the lines from the cursor to the mark
Shift the current line, and the one below it, one to the right. Which is, of course, the generic |
|||
|
|