vote up 5 vote down star

I would like to convert tab to spaces in gvim. I added the following codes to my _vimrc:

set tabstop=2

It works to stop at 2 spaces but it still looks like one tab key is inserted (I tried to use h key to count spaces afterwards). Not sure what should I do to make gvim to convert tab to spaces?

flag

57% accept rate
Personally, I'd find tabstop=2 too small an indent; I use ts=4, and understand why people (such as the Linux kernel team) use ts=8 (and they don't use expandtab - I do). – Jonathan Leffler Jan 9 '09 at 5:38

4 Answers

vote up 15 vote down

IIRC, something like:

set tabstop=2 shiftwidth=2 expandtab

should do the trick. If you already have tabs, then follow it up with a nice global RE to replace them with double spaces.

link|flag
If you're on Linux/Unix, you can expand the tabs by typing %!expand -2 – Paul Tomblin Jan 9 '09 at 3:31
Oops, that's ":%!expand -t2" – Paul Tomblin Jan 9 '09 at 3:32
1  
or you can just use :retab – rampion Jan 9 '09 at 3:47
vote up 15 vote down

Once you've got expandtab on as per the other answers, the extremely convenient way to convert existing files according to your new settings is:

:%retab
link|flag
vote up 3 vote down

Try

set expandtab

for soft tabs.

To fix pre-existing tabs:

:%s/\t/  /g

I used two spaces since you already set your tabstop to 2 spaces.

link|flag
That fix up will insert two spaces where only one is required. – Jonathan Leffler Jan 9 '09 at 5:37
instead of doing the substitution, you can do what Nick suggested above - ie retab. That will retab all your existing tabs as the number of spaces set in your tabstop. – Gowri Jan 17 '09 at 15:51
vote up 2 vote down

If you want to keep your \t equal to 8 spaces then consider setting:

   set softtabstop=2 tabstop=8 shiftwidth=2

This will give you two spaces per <TAB> press, but actual \t in your code will still be viewed as 8 characters.

link|flag

Your Answer

Get an OpenID
or

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