When autocompleting a class name in Eclipse, for example. if you type:
ListI tab
A pop-up menu will appear offering you the appropriate class names to complete (which you can select with the mouse or the arrow keys:
In this example, I almost certainly want java.util.ListIterator , and I almost never want com.sun.xml.internal.bind.v2.runtime.reflect.ListIterator (or anything else from this package).
This particular class will appear on the list often (every time I declare a ListIterator ). I would like to be able to exclude packages from autocomplete searches, so that java.util.ListIterator automatically populated without the need for a pop-up menu.
Is it possible?
java eclipse autocomplete
finnw Jan 15 2018-10-15 18:42
source share