If I have "use_tab_stops": true
, how is it possible to remove a single sapce at the beginning of the line?
For example, I have a file like this one:
if (a == b) {
// before
}
And the cursor is before the first slash. How is it possible then to remove just a single space, not four?
if (a == b) {
// after
}