up vote 1 down vote favorite
1
share [g+] share [fb]

In normal text editors, you select the block of text and then press Tab to entab and Shift + Tab to detab.

How do I entab or detab a selected block of text in VIM?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

If you select the text and hit ">" it will indent, and "<" will de-indent.

Whether it inserts tabs or spaces depends on your "expandtab" setting. You can edit the number of spaces/tabstop with the "shiftwidth" and "tabstop" settings.

link|improve this answer
1  
+1 Note: Shift V (Visual mode) to select the text block. Otherwise < and > will work on the current line. – Stefan Mai Nov 19 '09 at 0:59
2  
You can also select a block of text and press = to get vim to auto-indent. – MichaelM Nov 19 '09 at 1:05
@MichaelM: Thanks for that tip! Post it as an answer please, instead of a comment. I'll upvote you – Andreas Grech Nov 19 '09 at 1:07
feedback

In addition to Andy White's answer. I would also add the following into vimrc:

vnoremap > >gv
vnoremap < <gv

So you wouldn't need to reselect your code block to indent/dedent further.

link|improve this answer
feedback

You don't even need to select the text. You can indent/unindent the current line by hitting ">>" or "<<".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.