First off, thank you for a great editor.
I have a problem with disabling the autodetection of a single files indendation setting.
I have tried updating the following places:
Preferences.sublime-settings – User
“tab_size”: 4
“translate_tab_to_spaces”: true
“detect_indendation”: false
.sublime-project
“settings”:
{
“detection_indendation”: false,
“tab_size”: 4,
“translate_tab_to_spaces”: true
}
I have two open files:
1 that uses 4 whitespaces as tab
1 that uses 2 whitespaces as tab
When I view 4 space file:
(from console)
view.settings().get(“tab_size”);
4
When I view 2 space file:
view.settings().get(“tab_size”);
So, for some reason it is still detecting the original tab size of the file.
How can I get sublime text to do explicitly as I tell it, and not autodetect the tab size from the file opened ?
Thanks in advance
Waveshaper
