gihooh
gihooh

Reputation: 311

No completion available in Eclipse

What causes strange Eclipse behavior that prevents to auto complete the code I typed by pressing Ctrl + Space? And how to solve this issue?

Upvotes: 4

Views: 8637

Answers (3)

Frode Akselsen
Frode Akselsen

Reputation: 676

I solved the problem by re-running the indexer, even though I did not add a new file.

Upvotes: 0

Aliti
Aliti

Reputation: 2095

I had the same. Windows-->Preferences --> Java --> Editor --> Content Assist --> Advanced. Make sure -Java Proposals- is ticked.

see this.

Upvotes: 6

Vinayak Pingale
Vinayak Pingale

Reputation: 1315

To be precise this steps i usually take when such kind of bug come in my eclipse kepler,juno,gallileo(Tested)

  1. New WorkSpace

    Create a totally new workspace and import your existing project using import option general "import exisiting one".

  2. Content Assist setup

    Go to Preferences>Java>Editor>Content Assist>Advanced. Make sure “Other Java Proposals” is checked. Saying configure the behavious of program.

  3. No Overriding of ctrl+space

    Make sure (Ctrl + Space) combination key is not overridden by other application. Like a snapshot taker at my side did it.

Upvotes: 1

Related Questions