Bug 526022 - Support option for treating several spaces as one indent when backspacing
Summary: Support option for treating several spaces as one indent when backspacing
Status: NEW
Alias: None
Product: Platform
Classification: Eclipse Project
Component: IDE (show other bugs)
Version: 4.7.1   Edit
Hardware: PC Linux
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: Platform-UI-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-10-13 17:07 EDT by Yan Pas CLA
Modified: 2017-10-13 17:07 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Yan Pas CLA 2017-10-13 17:07:13 EDT
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;
}

Refs: https://stackoverflow.com/questions/4316914/configure-eclipse-so-that-backspace-unindents