Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to force Sublime Text 2 to always use two spaces per tab when working with Ruby files?

I know that indentation can be set under the view -> indentation menu option, but it does not stick. Every time I open a new file and hit tab, it reverts back to four spaces.

share|improve this question

2 Answers

up vote 86 down vote accepted

Go to Preferences -> Settings -> More -> Syntax Specific -> User and add these settings:

{
  "tab_size": 2,
  "translate_tabs_to_spaces": true
}

Restarting should not be necessary, although in some instances it can be.

share|improve this answer
2  
From build 2181. You can configure the settings from Preferences -> Settings - Default/User. Best to put it in the User settings as that is the intended approach. – Kevin Jalbert Feb 27 '12 at 23:41
8  
@KevinJalbert (and DGM) Actually he should put that in syntax specific settings, so it only affects Ruby files. – phoffer Feb 28 '12 at 0:18
Ah true! I must have overlooked the fact of being tailored for Ruby files. – Kevin Jalbert Feb 28 '12 at 0:28
Ah yes, well, it's not the most intuitive interface for settings. :( – DGM Feb 28 '12 at 15:17
1  
Notice the value is true and not "true". – earthmeLon Jan 29 at 15:27
show 2 more comments

If you want to force your chosen tab setting, ignoring what's likely already going on in the file, then you should include detect_indentation in your configuration (your User settings or your Syntax Specific settings, depending on if you want it global or per-filetype):

{
    "tab_size": 2,
    "translate_tabs_to_spaces": true,
    "detect_indentation": false
}
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.