Eclipse auto suggest list very slow

Viewed 26448

By auto suggest, I mean that intellisense that pops up when I write something. My problem is that if I write something like btnMyButton. after typing . I get to wait a few seconds until eclipse populates the list with events for button. I am using Eclipse to develop Android applications.

Can this be sped up? I have a Quad Core processor and 4 GB of ram. The rest of Eclipse is working fine.

6 Answers

When I changed delay to 1 (ms) it solved autocompletion problem in Eclipse for C++.it is now very fast:
Hi.when i changed delay to 1(ms) it solved autocompletion problem in eclipse for c++.it is now very fast

I unchecked "Fill method arguments and show guessed arguments" under Window > Preferences --> Java > Editor > Content Assist

This improved the content assist speed in my Eclipse

Uncheck all, other than API Tools Proposals and Java Proposals in Window > Preferences --> Java > Editor > Content Assist.

Refer to the below screenshot.

enter image description here

Related