Is there a way to open Java Content Assist in Eclipse, when pressing backspace (i.e. removing wrongly typed letter)?
Consider an example: When we type this.
, the Eclipse opens Content Assist windows with code completion suggestions. Then if we write a text, that is not suggested (e.g. it suggests a series of get*
methods, and we type this.gw
), the Content Assist window disappears. Then when we press backspace to remove wrongly typed letter, the assist window remains closed.
Is there a way to automatically reopen this window? Is there a setting in preferences for this?
I know that ctrl+space
brings back Content Assist window, but that's not a solution. I just want more friendly behavior of IDE, known from e.g. Visual Studio.
How about pressing
Ctrl+z
instead of backspace? IIRC that should do the trick.