Navigating the Content Assist List in Eclipse

后端 未结 3 1648
醉酒成梦
醉酒成梦 2020-12-29 14:20

Here are the ways the Eclipse documentation states you can navigate the Content Assist list:

You can use the mouse or the keyboard (Up Arrow, Down A

相关标签:
3条回答
  • 2020-12-29 14:44

    If you try to fill in the content manually, Eclipse will move.

    The search is quite advanced, e.g. "ArL" can match ArrayList, etc., so if you know what you are looking for, instead of navigation you could use search.

    0 讨论(0)
  • 2020-12-29 14:51

    This is a great feature, and you can implement it like so: bind movement keys in Eclipse's key binder and then use them in the content assist menu!

    Preferences/General/Keys

    Line Down: Bind to Ctrl+K Line up: Bind to Ctrl+I

    (both when 'Editing Java Source')

    and then try moving with Ctrl-K/I when the content assist pops up!

    In Kepler, as jed mentions in the comments, select "when editing text" instead and it should work.

    0 讨论(0)
  • 2020-12-29 14:57

    This is certainly not a solution for everyone, but if you switch to the Emacs keyboard layout you can just use the key bindings for the "previous line" and "next line" commands, e.g., Ctrl-P and Ctrl-N.

    0 讨论(0)
提交回复
热议问题