History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEABKL-2900
Type: New Feature New Feature
Status: Open Open
Priority: Normal Normal
Assignee: Maxim Shafirov
Reporter: Tobin Juday
Votes: 0
Watchers: 1
Available Workflow Actions

Mark as Stalled
Operations

If you were logged in you would be able to see more operations.
IDEA: Backlog

CTRL-Delete to know language syntax like Ctrl+W

Created: 09 Apr 05 00:36   Updated: 09 Apr 05 22:56
Component/s: Editor. Editing Text
Affects Version/s: None
Fix Version/s: None

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown
Environment: Windows XP

Build: 3,281
Severity: Medium


 Description  « Hide
Starting with a line like

System.out.println("I am here: " + System.currentTimeMillis());

Position your cursor directly after the second quote sign and use CTRL-Del to delete words. Here is the progression:

( | = cursor )

System.out.println("System time: "| + System.currentTimeMillis());
System.out.println("System time: "|+ System.currentTimeMillis());
System.out.println("System time: "| System.currentTimeMillis());
System.out.println("System time: "|System.currentTimeMillis());
System.out.println("System time: "|.currentTimeMillis());
System.out.println("System time: "|currentTimeMillis());
System.out.println("System time: "|TimeMillis());
System.out.println("System time: "|Millis());
System.out.println("System time: "|());
System.out.println("System time: "|

I expected that last CTRL-Del to only delete the pair of paranthesis, and leave me with compilable code, like:

System.out.println("System time: "|);



 All   Comments   Work Log   Change History      Sort Order:
Maxim Shafirov - 09 Apr 05 22:55
I guess you're expecting too much from Ctrl+Del. At the moment it knows nothing about the language and only tries to guess what words are by analyzing alpha characters both lower case and capitals.
Sounds like a good RFE though.