Project
ReSharper
Priority
Normal
Type
Feature
Fix versions
Mirabile Futurum
State
Open
Assignee
Evgeny Pasynkov
Subsystem
Typing Assistance
Affected versions
No Affected versions
Fixed in build
No Fixed in build
  • Created by   Amir Kolsky
    5 years ago (05 Aug 2006 15:53)
  • Updated by   Sergey Shkredov
    4 weeks ago (26 Apr 2012 17:02)
  • Jira: RSRP-9506
    (history, comments)
 
RSRP-9506 Editing Request: Hungry Backspace
2
Issue is visible to: All Users
  The issue is visible to the selected user group only
From ??Paul Bradshaw <pbradshaw@advsol.com>??:

A "hungry delete" swallows up all whitespace when pressed, rather than just one space, tab, or line-feed at a time.

For instance, when you have this (where "|" is the caret):
public foo()
{
        // some code
        *|*
}


Pressing ??delete?? will get you to this:

public foo()
{
        // some code
*|*
}


But pressing a ??hungry delete?? will get you to this:
public foo()
{
        // some code|
}


Which is much more logical, as it's the exact inverse of pressing enter (i.e., pressing enter auto-indents and opens a new line... pressing hungry delete deletes the indent and closes the line).
Comments (1)
 
History
 
Linked Issues (?)
 
TeamCity Changes (0)
 
Paul Bradshaw
  Paul Bradshaw
07 Aug 2006 23:55
5 years ago
Re: #9506- Editing Request: Hungry Delete
Should just emphasize here I was talking about hungry BACKSPACE, not to be confused with the Delete key.