有没有办法让 Eclipse (JDT) 中的内容辅助在我输入“new”后自动显示?
大多数情况下,在输入“new”后,我会按 Ctrl-空格键快速选择所需的类。我希望 Eclipse 自动显示工具提示,就像 VS+Resharper 那样。
Most of the time after typing "new" I press Ctrl-space to quickly choose the necessary class. I want Eclipse to show the tooltip automatically, like VS+Resharper does.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您毫不犹豫地键入单个空格,则可以将空格字符添加到将触发内容辅助对话框的字符列表中。默认字符是点 (.) 字符,您可以在其中添加其他字符。
我还没有找到一种方法来避免指定任何触发字符,并且仍然获得内容辅助对话框。因此,使用列表中的空白字符,您必须输入
new
而不仅仅是new
,并且您可以获得您想要的内容(或超出您需要的内容,因为对话框会在输入的每个空格上弹出)。If you do not have any hesitation in typing a single whitespace, you can add the whitespace character to the list of characters that will trigger the content assist dialog. The default character is the dot (.) character, to which you can add other characters.
I haven't found a way to avoid specifying any trigger character, and still get the content assist dialog. So, with the whitespace character in the list, you have to type in
new
instead of justnew
, and you can get what you desire (or more than what you need, as the dialog pops up on every space entered).