Bug 218419 - [content assist] Method name completion should favour previously chosen completions
Summary: [content assist] Method name completion should favour previously chosen compl...
Status: ASSIGNED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Text (show other bugs)
Version: 3.4   Edit
Hardware: All All
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: JDT-Text-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-02-09 04:52 EST by Neil Bartlett CLA
Modified: 2008-02-11 03:43 EST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Neil Bartlett CLA 2008-02-09 04:52:52 EST
Build ID: All

Steps To Reproduce:
When completing on a class import, JDT remembers previously chosen completions and moves them to the top of the list. For example, typing "List" and hitting complete, JDT knows that I never use java.awt.List, so java.util.List is moved above it.

It would be nice if this worked for completion on method name. For example if I have an Iterator variable called "iter" and I type "iter.has" and hit complete, JDT will offer "hashCode" before "hasNext". Since I choose hasNext far more frequently than hashCode, it should be made the first choice.

More information: