Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

3 Answers

up vote 8 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.

share|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

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

You can do

:%s/\t/  /g
share|improve this answer

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/.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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