| Summary: | Inspection could be smarter when resolving selected text | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Tom Mutdosch <mutdosch> |
| Component: | Debug | Assignee: | JDT-Debug-Inbox <jdt-debug-inbox> |
| Status: | RESOLVED WONTFIX | QA Contact: | |
| Severity: | enhancement | ||
| Priority: | P3 | ||
| Version: | 3.2 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
Hi,
Just a tip for the code in your comment,
you can easily select the expression inside a parentheses just by double clicking around the parentheses, i.e. the position marked with '^'
IEditorInput input = new FileEditorInput(^context.getJavaFile())^;
Or it can help a bit to use key combination ctrl + shit + arrows.
anyway to me (a daily eclipse user) your idea is nice.
Deferred for future consideration. As of now 'LATER' and 'REMIND' resolutions are no longer supported. Please reopen this bug if it is still valid for you. |
build: I20060512-1600 In the Debugger, the Inspect operation could be smarter with the ability to better figure out what portion of the selected text should be inspected. For instance if I have this line in my editor: IEditorInput input = new FileEditorInput(context.getJavaFile()); And I quickly highlight: context.getJavaFile()); and try to inspect I get a "Syntax error" in the inspection box. It would be nice if it could figure out that I don't mean to inspect the last outer parenthesis. I often find it hard to highlight exactly what I want when there's all those parenthesis bunched together and I feel like I have to be a surgeon with my mouse to highlight what I want; it'd be nice to be able to quickly select what I want and the Inspection would figure it out.