When I am typing Eclipse does not automatically shows content assist, but only after I press Ctrl + Space.
I used to type class name and Eclipse gave good proposals automatically.
But now it is not working.
Asked
Active
Viewed 3.5k times
41

Vukašin Manojlović
- 3,717
- 3
- 19
- 31

Volodymyr Levytskyi
- 3,364
- 9
- 46
- 83
2 Answers
101
Go to, Window >> Preferences >> Java >> Editor >> Content Assist >> Auto activation triggers for Java, and enter .abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
, this will trigger the auto activation for class names, methods, etc.

Paolo Forgia
- 6,572
- 8
- 46
- 58

Elye M.
- 2,667
- 4
- 30
- 43
-
9I also inserted the @ sign, which is useful for annotation autocompletion. – Arceus Jul 09 '17 at 00:28
-
awesome! this is what am looking for! thank you :) – Lokesh Sanapalli Mar 04 '22 at 13:25
2
Look in Preferences in Java / Editor / Content Assist and check the Enable auto activation
check box is ticked and has a sensible delay.

greg-449
- 109,219
- 232
- 102
- 145
-
Thanks! It is checked and delay is 200ms. Auto-activation triggers is set to dot(.) meaning content-assist is only when dot is typed. But I used to type class name or method name and eclipse poped-up content- assist right away. – Volodymyr Levytskyi Oct 18 '13 at 13:37