Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to hide some Eclipse autocomplete results [duplicate]

I'm developing Wicket applications in Eclipse 3.6. Is there a way to block out some packages from Eclipse autocomplete, so that I don't see suggestions for the unwanted AWT classes with the same name? I'd like to see the org.apache.wicket result below, but not the java.awt result.

Wicket TextField, not AWT please

like image 481
Adrian Cox Avatar asked Apr 04 '11 12:04

Adrian Cox


People also ask

How do I turn off Eclipse suggestions?

Open menu Window, then Preferences. Follow path Java -> Editor -> Content assist. Now mess around with the settings to find your ideal setup. I believe what you'll want is to deactivate Insert single proposals automatically.

How do I turn off space autocomplete in eclipse?

In Eclipse go to Window -> Preferences -> General -> Keys and remove the binding for the command Content Assist. That would remove the possibility to bring up the suggestions using ctrl+Space.


1 Answers

Check this out:

Window > Preferences > Java > Appearance > Type Filters

and add the java.awt package

like image 57
krookedking Avatar answered Sep 17 '22 17:09

krookedking