Having eclipse configured to use space instead of tabs, is it possible to configure eclipse so that the backspace key unindents like the tab key indents?
A demonstration to clarify what I mean with backspace unindent (the vertical bar stands for cursor position and the dots for spaces):
if(bar == 0) {
|foo = 0;
}
Pressing tab will indent 4 spaces:
if(bar == 0) {
....|foo = 0;
}
Pressing backspace only goes back 1 space:
if(bar == 0) {
...|foo = 0;
}
What I want is that it goes back 4 spaces:
if(bar == 0) {
|foo = 0;
}
You know that "shift+tab" will outdent a line already, correct?
Hmmm, I just took a look at preferences->general->keys. I only see indent line there, no outdent (or anything useful under "dent").
Personally, I would say that backspace is the key I hit second most often, after space. Rebinding it would drive me bonkers.
According to these very similar questions:
it seems to be not possible :(
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With