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

So I've written some code of an assignment and i forgot the universities polocy of indent with 2spaces.

Normally I'ld have put a: vim: ts=2:tw=2: et:

at the top of my files, but this time i forgot.

How should I go about replacing all tabs with 2 space? would s// work? (repalcing and with the respectiove characters.

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

You should have a look at retab. First set tabstop, shiftwidth and expandtab, then use the retab command: it will reformat all your file with the desired format.

link|improve this answer
1  
Watch for literal tabs that are not indenting, that is, are not at the beginning of line. From :h :retab "Careful: This command modifies any <Tab> characters inside of strings". It means that "\tFoo\tBar" becomes " Foo Bar" – Heikki Naski Apr 26 '10 at 9:38
I fround oput that if i just add the vim setting stuff the the to, the when i reopen the file, vim will automatically call retab even. Thankyou – Oxinabox May 8 '10 at 3:45
feedback

How should I go about replacing all tabs with 2 space?

You can do

:%s/\t/  /g
link|improve this answer
feedback

Run the following commands:

:set expandtab tabstop=2 shiftwidth=2 softtabstop=2
:retab!

Check out my screencast on tidying whitespace here: http://vimcasts.org/episodes/tidying-whitespace/.

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.