I am using Eclipse for Java development. One thing that I like with IDE's are when they propose the method names that I'm typing, this improves my productivity and keeps me from misspellings.
E.g my class:
class User {
private String name;
private int id;
}
I want the proposals when typing my_user.
(should propose name
and id
quickly)
But Eclipse is very slow on this IDE feature which is important for me. (Google is doing search suggestions faster over Internet than Eclipse do proposals in my local workspace). Is there any way I can speed the Eclipse proposals up?
I have tried to uncheck all proposals except the "Java Proposals" from:
Windows > Preferences > Java > Editor > Content Assist > Advanced
I have tried this on both Eclipse Galileo 3.5.2 and Eclipse Helios 3.6.2. Galieleo is sligthly faster than Helios but both are too slow to be very useful.
500
to0
now is it instant! – Torch