Reputation: 451
I'm using Sublime Text 3 with spaces indentation (4 space chars for each tab), when I'm pressing the backspace button, it deletes the whole tab (the 4 space chars).
Who can i change it so when I'll press the Backspace button it will delete one space char only?
thanks in advance!
Upvotes: 2
Views: 993
Reputation: 700
It sounds like you have set "translate_tabs_to_spaces": true
so you want to add "use_tab_stops": false
to your user Preferences.sublime-settings
file. Then backspace and tab will operate on spaces, not designated tabstops.
Upvotes: 2