Reputation: 2462
I use tabs to indent, but I set it so that it uses spaces to tab. I use the text editor Sublime. I manually set it in the lower right hand corner where it says "Tab Size:". For each file I have to manually set this. I have not yet found a solution to make what I want the default. Does anyone know how?
Upvotes: 1
Views: 1675
Reputation: 4847
Just open your user settings via "Preferences >> Settings - User" and add these two settings. Change the tab size to the size you prefer:
"tab_size": 4,
"translate_tabs_to_spaces": false,
In general you can just open the default settings and search for the setting you would like to change.
Upvotes: 4