vote up 3 vote down star
1

I have a some .py files that use spaces for indentation, and I'd like to convert them to tabs.

I could easily hack together something using regexes, but I can think of several edge cases where this approach could fail. Is there a tool that does this by parsing the file and determining the indentation level the same way the python interpreter does?

flag

57% accept rate

5 Answers

vote up 1 vote down

:retab will swap tab with spaces, and :retab! will swap spaces with tab. 1 tab = 4 spaces, 4 spaces = 1 tab, depending on your tab setting.

link|flag
vote up 1 vote down

In emacs, M-x tabify will convert spaces to tabs where possible. You'll probably want to set the tab-width variable appropriately.

I don't know if this addresses your concern that spaces be interpreted in the same way as the python interpreter, but you could always load up python-mode and use M-x indent-region.

link|flag
vote up 6 vote down

Python includes a script for the opposite (tabs to spaces). It's C:\Python24\Tools\Scripts\reindent.py for me

link|flag
vote up 11 vote down

Since PEP-8 suggests that spaces a preferred over tabs, I'm curious why you're going from preferred (spaces) to not-preferred (tabs).

Wouldn't it be simpler to follow PEP-8 and leave them spaces?

link|flag
By the way: Why is PEP-8 against tabs? I've always been fine with tabs, and my interpreter never complained... – Federico Ramponi Dec 3 '08 at 21:36
I would like to change them for consistency's sake. – Corey Dec 3 '08 at 21:42
@Federic Ramponi: Not against tabs. Recommend spaces. It's important to pick one, and spaces are easiest to get right. Some folks work okay with tabs, but spaces are guaranteed. – S.Lott Dec 3 '08 at 21:44
PEP-8 isn't "against" tabs, it's for consistency - and they chose spaces over tabs (I imagine the python-dev mailing list has a lot of discussion of why, such as mail.python.org/pipermail/python-list/… ) – dbr Dec 3 '08 at 21:45
@Corey: Consistent -- yes. But consistent With what? Surely not other code formatted according to PEP-8. – S.Lott Dec 3 '08 at 21:45
show 7 more comments
vote up 6 vote down

If there are not many files to convert, you can open them in vim, and use the :retab command.

See the vim documentation for more information.

link|flag

Your Answer

Get an OpenID
or

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