Vim Tips Wiki
Line 28: Line 28:
 
:args *.c
 
:args *.c
 
:argdo normal gg=G
 
:argdo normal gg=G
  +
:wall
:update
 
 
</pre>
 
</pre>
   
Line 34: Line 34:
 
<pre>
 
<pre>
 
:bufdo normal gg=G
 
:bufdo normal gg=G
  +
:wall
:update
 
 
</pre>
 
</pre>
   

Revision as of 10:14, 2 September 2009

Tip 224 Printable Monobook Previous Next

created 2002 · complexity basic · author niboan · version 6.0


Programmers often need to adjust indents (amount of whitespace before the text on a line). This tip shows how it's done.

See Indenting source code for related information, including settings that affect indentation.

Indentation commands

Normal and visual mode commands

The << and >> commands shift lines one 'shiftwidth' to the left and to the right respectively. Each command can be used with a count. The operators < and > do the same for motions, text objects and visual selections. For all commands, pressing . repeats the operation. For example, typing 3>>.... shifts three lines to the right, and the operation is repeated so that the three lines are shifted a total of five 'shiftwidth's.

The == command automatically indents count lines according to your indentation settings. The = command does the same, but for motions, text objects and visual selections.

To reindent an entire buffer, use gg=G.

To reindent many files, the argument list can be used:

:args *.c
:argdo normal gg=G
:wall

or the buffer list (caution, every buffer will be affected):

:bufdo normal gg=G
:wall

Insert mode commands

In insert mode, CTRL-T inserts one 'shiftwidth' of indent at the start of the current line, and CTRL-D removes one. 0 CTRL-D removes all indentation on the current line, and ^ CTRL-D does the same, but restores the original level of indentation for this line on the next line.

When using 'cindent' or file type based indentation, CTRL-F reindents the current line, like == in normal mode.

Ex commands

The :< and :> commands take a range and can be appended by additional < and >, respectively, each adding a 'shiftwidth' of indentation.

Indenting examples

To adjust the indent on three lines:

  • Put the cursor anywhere in the first line.
  • Press V then jj to visually select the three lines.
  • Press > to indent (shift text one 'shiftwidth' to the right), or press < to shift left.
  • Press . to repeat the indent, or u to undo if you have shifted too far.
  • Type gv if you want to reselect the lines (not needed).

Alternatively, if you know that you want to adjust three lines, you can simply:

  • Type 3>> to shift right or 3<< to shift left.

Or:

  • Type >2j to shift right or <2j to shift left.

To set the indent on three lines to 12 spaces (or an equivalent mixture of tabs/spaces, depending on 'expandtab'):

  • Put the cursor anywhere in the first line.
  • Press V then jj to visually select the three lines.
  • Type :le 12 then press Enter (abbreviation for :left 12).

To remove all indents in a selected region, type :le then press Enter.

To apply automatic indentation (this requires suitable indent rules for your file type):

  • Type == to indent the current line.
  • Type a number then == to indent that many lines, starting from the cursor.
  • Press V then move the cursor to select a range of lines, then press = to indent the selection.

 TO DO 

  • Need info on commands like vaB, viB, >aB, >iB.
  • 597 Indent a code block Perhaps merge 597 to here, or use in "see also".

Mappings

If you select some lines then press > to indent the lines, the selection is removed. The indentation can be repeated on the same range using ., but if you still want to retain the visual selection after having pressed > or <, you can use these mappings

:vnoremap > >gv
:vnoremap < <gv

" Alternative using Tab/Shift-Tab (for gvim).
:vnoremap <Tab> >gv
:vnoremap <S-Tab> <gv

An alternative for anyone using :behave mswin, is to select lines by holding down Shift and pressing the cursor down or up arrow keys. However, in select mode, if you press >, the selected text will be replaced with '>'. Instead, you can use Tab to increase the indent, and Shift-Tab to decrease it, with these mappings:

:vnoremap <Tab> >
:vnoremap <S-Tab> <

In select mode, visual-mode mappings temporarily set visual mode (:help Select-mode-mapping).Also, the select mode will be retained. You could use the following alternative if you want to exit from select mode after pressing Tab or Shift-Tab:

:vnoremap <Tab> >gV
:vnoremap <S-Tab> <gV

References

Comments

With the recent additions, this article should be renamed Indentation commands. (Spiiph 00:31, September 2, 2009 (UTC))

Yes, but I would like to wait a week or two until we have had a chance to fix the related indent articles. It's only after they are all in reasonable shape that we will have a good idea what to call them. JohnBeckett 08:35, September 2, 2009 (UTC)

What is :update doing in the #Normal and visual mode commands section (it occurs twice)? Was it intended to be part of the argdo/bufdo so each buffer is saved? I think it should just be deleted because it is not helpful and distracts from the point. (Yet another TODO: we need a link to a tip explaining that you would need :set hidden, and how to do :wa). JohnBeckett 08:35, September 2, 2009 (UTC)

Ooops, I probably meant to do :wall.

I have done a little tweaking. Later, I'll wonder about how all the indent tips appear. I wanted a tip somewhere which clearly shows how easy it is to visually select some lines and use the built-in procedures of < and > and . and u (and so point out that the many old tips on mappings using gv are misguided). That simple info is really all that most readers would ever use. At any rate, there is now some excellent information here. JohnBeckett 08:35, September 2, 2009 (UTC)

Ah, I might have misunderstood your intention when you moved the Indentation commands section here. I thought you wanted a more generic tip. Maybe we should create a whole new tip for that, and leave this one as it is? (Spiiph 10:14, September 2, 2009 (UTC))