In setting up my own preferences, I've modified my Base settings to expand tabs to spaces, but clearly in Makefiles, this has to be reversed. According to this page, http://www.sublimetext.com/docs/2/indentation.html, there are two User places for putting User settings. But at least in build 2059, they file-type specific version does not work.
From that page:
Settings files are consulted in this order:
Packages/Default/Base File.sublime-settings
Packages/Default/Base File (<platform>).sublime-settings
Packages/User/Base File.sublime-settings
Packages/<syntax>/<syntax>.sublime-settings
Packages/User/<syntax>.sublime-settings
but when I place the following in Packages/User/Makefile.sublime-settings, the settings are never used:
- Code: Select all
{
"word_wrap": false,
// The number of spaces a tab is considered equal to
"tab_size": 4,
// Set to true to insert spaces when tab is pressed
"translate_tabs_to_spaces": false
}
Maybe I'm doing something fundamentally wrong.