vote up 0 vote down star

There is a running argument at our work if we should indent our code with TABs, 2-spaces or 4-spaces (PHP/Eclipse). As far as my experience goes, it doesn't matter.

Does anyone have any practical example of when it does matter, e.g. perhaps in other languages (Python?) or IDEs, or with certain code documentors or code sniffers, etc.

Bonus argument question: do Windows people prefer tabs and UNIX people prefer spaces?

flag

This should probably be wiki – Greg Dec 3 '08 at 15:53
Why vote this down? I know it's a holy war issue, but really it is programming related. – Dan Blair Dec 3 '08 at 16:00
It is also subjective and argumentative. – EBGreen Dec 3 '08 at 16:02
Duplicate of stackoverflow.com/questions/40533/… – EBGreen Dec 3 '08 at 16:04
I posted this question because a colleague asked me about 20 minutes ago what each of us in the room use since he was editing a file from another team with JEdit and found that it had spaces and TABs in it and was hence hard to read and he couldn't reformat it in JEdit (does anyone know how?). – Edward Tanguay Dec 3 '08 at 16:07
show 1 more comment

closed as exact duplicate by EBGreen Dec 3 '08 at 16:04

10 Answers

vote up 18 vote down check

This is such a holy war.

Personally I prefer tabs, because I object to extraneous bytes, and prefer to be able to define the indentation on a user by user basis. Javascript taught me this.

Very subjective.

link|flag
+1 for Tabs here as well, but in my case it's also because they can be styled to show an individual programmers preferred width. I've seen programmers prefer their indentation as wide as 8 spaces and a narrow as 2- a tab accomodates both. – Joel Coehoorn Dec 3 '08 at 15:40
+1 for pure tabs, it is IDE friendly. (Why I want to code without a nice and good editor?) If I want to line things up, I move the things to the next line. If it is too long and I can't read, I'll fix the nested if/loop, not space. – Dennis Cheung Dec 3 '08 at 16:00
@Joel: exactly :) – annakata Dec 3 '08 at 16:02
vote up 0 vote down

There is one very important example of where this matters - Makefiles. You must use tabs, else it will not work.

link|flag
vote up 0 vote down

I prefer tabs whenever possible, but use spaces when I'm forced to use our legacy system's code which automatically sets all tabs to 6-spaces (wtf?) - I go for spaces so that my code is at least somewhat readable when looking it in the program's internal viewer.

This can cause issues though, because the highest number of characters that a piece of code can have in this program is 65K characters (code is stored on the DB), and there is nothing in place to allow you to create functions, or anything resembling OOP, or anything at all that works like a real coding language.

Oh, and there are no arrays, dictionary constructs, or anything like that. We had issues where the debugger was crashing because a program relied on repeatedly concatenating fields from the DB into a massive 500+ character string.

I hate it so much.

link|flag
vote up 1 vote down

here'a link dump, this debate's almost asymptotic (almost everything that could be argued has been posted or blogged somewhere)

http://c2.com/cgi/wiki?TabsVersusSpaces

http://wincent.com/a/about/wincent/weblog/archives/2007/10/tabs_vs_spaces.php

I kinda don't like 2 or 4-space soft tabs, I would use 3-spaces, but, um, that's not a popular option.

link|flag
vote up 0 vote down

It's much more cross platform friendly to use spaces.

4 spaces per indent is the norm.

If you must use tabs, most good editors will offer a function where the tab key inserts spaces instead.

link|flag
vote up 4 vote down

Tabs to line things up before text, spaces after.

function foo()
{
    TAB foo   SPACES  = 1;
    TAB fooble SPACES = 2;
    TAB x   SPACES    = 3;
}
link|flag
1  
This is such a simple rule, I don't understand why so many fail to grasp it. – Peter Boughton Feb 14 at 1:13
vote up 1 vote down

There is a running argument on planet Earth that coincides with the one at your workplace. In fact discuss.fogcreek.com has a version of this argument.

I've yet to see any compelling practical consideration that didn't rely primarily or exclusively on the personal preferences and work-habits of whoever happened to be in the argument. All of the above approaches have advantages and disadvantages, that's what makes this issue Holy-War-compatible.

The only compelling practical advice is, whatever convention you use, use it consistently.

link|flag
vote up 5 vote down

Always use the established convention of the project you are working on.

When I can choose, I find a indentation width of four spaces comfortable. Using TABs helps if your IDE isn't very smart about indenting (and removing indenting) automatically.

link|flag
vote up 0 vote down

I'm a spaces over tabs guy and any number as long as all agree.

link|flag
But if you use tabs, you don't have to agree..... – James Curran Dec 3 '08 at 15:36
OMG that's funny James. Are you Canadian? – Kenny Dec 4 '08 at 11:45
vote up 0 vote down

Shouldn't ever make a difference - they're all treated as whitespace.

link|flag
Except when you're writing code for the Whitespace language. ;) – Kevin Dec 3 '08 at 15:50

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