Fix Indentation and Tabs in VIM

Thanks to the folks in #vim on freenode, here’s a quick tutorial on how to fix the indentation and tabs in an xml file from within VIM…

First find out what your current settings are by typing:

:filetype

Should return something like “filetype detection:ON plugin:OFF indent:OFF”

1) :set filetype=xml
2) :filetype indent on
3) :e
4) gg=G

Basically what this is doing is setting the filetype to xml (so it can pickup the XML indenting rules (see :e $VIMRUNTIME/indent for a list of available languages)

Then turn on indent, then reload it (:e).

The last step is ‘gg=G‘ which will acutally retab the entire file (gg is line 1, and G is last line).

You can find more info by reading vim help files:

:he gg
:he =
:he G
:he :filetype

Note: Most commands in vim are run with by typing “:command, you can find help by typing “:help command” or simply “:he cmd”. HOWEVER, the main command to retab “gg=G” is NOT preceeded by a “:”.

VN:F [1.8.4_1055]
Rating: 9.6/10 (5 votes cast)
VN:F [1.8.4_1055]
Rating: +2 (from 2 votes)
Fix Indentation and Tabs in VIM9.6105

No Responses to “Fix Indentation and Tabs in VIM”

  1. Anonymous says:

    All this programming knowledge and you still can’t fix the politics server…

    tisk tisk.

    You’ve failed us.

    UN:F [1.8.4_1055]
    Rating: 0.0/5 (0 votes cast)
    UN:F [1.8.4_1055]
    Rating: -1 (from 1 vote)
  2. chovy says:

    failed you?

    Ask any of the regulars, they’ll tell you it’s better now than it was with Neureal Hosting.

    UN:F [1.8.4_1055]
    Rating: 0.0/5 (0 votes cast)
    UN:F [1.8.4_1055]
    Rating: +1 (from 1 vote)

Leave a Reply