By default Eclipse indents with a hard tab character. How do I change it to spaces?

link|improve this question

60% accept rate
feedback

5 Answers

up vote 159 down vote accepted

For the Java editor it's as Brian mentions:

Window->Preferences->Java->Code Style->Formatter->Edit->Indentation = "Spaces Only"

However, for the default text editor:

Window->Preferences->Editors->Text Editors->Insert spaces for tabs

On Eclipse 3.6

 Window->Preferences->General->Editors->Text Editors->Insert spaces for tabs

Note that the default text editor is used as the basis for many non-Java editors in Eclipse. It's astonishing that this setting wasn't available until 3.3.

link|improve this answer
4  
For those who have MyEclipse installed or any other IDE built on top of Eclipse, you may have another editor overriding your settings. This was the case for MyEclipse and JavaScript. I had my "Insert spaces for tabs" setting enabled in Text Editors, but tabs were still being used instead of spaces. I was about to call it a day and write it off as a bug, but then I saw a second editor for JavaScript (*.js ) files in the "Associated Editors" list. – John Feb 11 '10 at 17:45
1  
This might be a helpful hint, but if you experience the same behavior, check if the file has any other associated editors because they may be overriding your settings. To do so, goto Window > Preferences > General > Editors > File Associations > then look for the file extension which is ruining your day in that list > click it and look at the Associated Editors list below – John Feb 11 '10 at 17:46
For JavaScript, I saw both Text Editor and MyEclipse JavaScript Editor which was flagged as the default. So one of two things can be done here, you can either set Text Editor to be your default or you can update the MyEclipse JavaScript Editor settings. I opted to do the latter and went to: Window > Preferences > MyEclipse > Files and Editors > JavaScript > Code Style > Formatter > Edit... > Tab policy: Hope this helps! – John Feb 11 '10 at 17:46
1  
For XML I had no associated edotor but I had to go to Window > Preferences > XML > XML Files > Editor – Bill Comer Apr 21 '10 at 15:14
4  
for existing Java file press Ctrl-A to highlight everything and then Ctrl-I to apply current indents. Otherwise existing tabs will prevent spaces in new lines created with Enter. It also replaces existing tabs with spaces. – topchef Apr 21 '11 at 1:41
show 2 more comments
feedback

For the default text editor:

  • General > Editors > Text Editors > Insert spaces for tabs (check it)

For PHP:

  • PHP > Code Style > Formatter > Tab policy (choose "spaces")
  • PHP > Code Style > Formatter > Indentation size (set to 4)

For CSS:

  • Web > CSS > Editor > Indent using spaces (select it)
  • Web > CSS > Editor > Indentation size (set to 4)

For HTML:

  • Web > HTML > Editor > Indent using spaces (select it)
  • Web > HTML > Editor > Indentation size (set to 4)

For XML:

  • XML > XML Files > Editor > Indent using spaces (select it)
  • XML > XML Files > Editor > Indentation size (set to 4)

For Javascript:

  • Javascript > Preferences > Code Style > Formatter > Edit > Indentation (choose "spaces only")
  • Rename the formatter settings profile to save it

For Java:

  • Java > Preferences > Code Style > Formatter > Edit > Indentation (choose "spaces only")
  • Rename the formatter settings profile to save it
link|improve this answer
I see no Web or Javascript options in the root of Preferences (I do have a Web Perspective available, though) and I want to set tabs as spaces for just html, css, and javascript files. I'm on Helios Eclipse for Java Developers, any idea how I can get that option? – danny Aug 7 '11 at 20:20
These settings are what I see in Eclipse PDT (PHP Development Tools). Eclipse PDT is built on Eclipse WTP (Web Tools Platform), which includes JavaScript Development Tools (JSDT) and Source Editing of various web formats. This is probably what you're missing. – Patrick Fisher Sep 23 '11 at 21:13
+1 for the Java stuff which is absolutely necessary because its default settings override the general text editor settings. – Giulio Piancastelli Nov 10 '11 at 10:33
feedback

From here: http://blog.dotkam.com/2007/03/21/changing-tabs-to-spaces-in-eclipse/

Window->Preferences->Java->Code Style->Formatter->Edit->Indentation = "Spaces Only"

link|improve this answer
feedback

Check also java formater, since it overwrite "Insert spaces for tabs" settings. Go to "Java->Code Style"->Formatter->Edit->Identation"

But beware since you will need to create a custom format to be able to save your configurarion.

link|improve this answer
feedback

For CDT Window/Preference C/C++ Code Style New (Create a new one because Built in can not be changed) MyProfile (choose one name for the profile) Indentation Tab Policy --> Spaces only

Good Luck

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.