I would like change the basic indentation on template ruby haml. He is set when I create a new file to 'Tab Size: 4' How change it in 'Spaces: 2'?

Thanks.

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

To change the indentation settings just for ruby files create a new file named Ruby.sublime-settings, based on your OS, in %APPDATA%\Sublime Text 2\Packages\User or ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/User/ or ~/.config/sublime-text-2/Packages/User/' with the following content:

{
  // The number of spaces a tab is considered equal to
  "tab_size": 2,

  // Set to true to insert spaces when tab is pressed
  "translate_tabs_to_spaces": true
}
link|improve this answer
feedback

To change indentation within the document, go to View > Indentation > Convert Tabs to Spaces. To make this change within the document for future edits, go to View > Indentation > Spaces Width: 2. Additionally, if you have the status bar visible, you can you can click where it says Tab Size: 4 and change the indentation here from the context menu.

link|improve this answer
My goal isn't just change to one file the indentation. But change the basic settings to all ruby files. Thanks. – Guillaume Feb 23 at 16:06
feedback

Your Answer

 
or
required, but never shown

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