如何让IntelliJ IDEA的自动弹出文档每次都出现?
在 IntelliJ IDEA 中,如果您键入一个变量,然后点击句点“.”按钮,您将获得可供选择的可能成员的列表。如果按 Ctrl+Space,您将看到一个文档窗口,其中包含每个成员的进一步说明。
作为一名学习者,我希望每次都能自动弹出此扩展文档。例如,如果我使用 Java 进行编程并输入:
System.
我希望每次选择成员时都会弹出文档窗口,而不必按 Ctrl+Space。如果您使用过 Visual Studio 进行 C# 编程,我想您就会明白我的意思。
进入文件->设置->编辑器->代码完成并更改自动弹出文档计时器没有帮助。
在我看来,Visual Studio 2010 非常好地实现了智能感知。
In IntelliJ IDEA, if you type a variable and then hit the period "." button, you get a list of possible members to choose from. If you press Ctrl+Space, you get a documentation window containing further explanations of each member.
As a learner, I want to make this extended documentation pop-up automatically every time. For example, if I'm programming in Java and I type:
System.
I want the documentation window to pop-up every time I select a member, without having to press Ctrl+Space. If you've used Visual Studio to program in C# I think you'll know what I mean.
Going into File->Settings->Editor->Code Completion and changing the autopopup documentation timers did not help.
Visual Studio 2010 implements intellisense extremely well, in my opinion.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自动文档弹出窗口旨在与 Ctrl+Space 代码完成配合使用,否则您必须使用 Ctrl+Q 来调用它。
最新 IntelliJ IDEA 版本中引入的新的全自动代码完成功能不会显示它,此行为是设计使然。
Automatic documentation pop-up was designed to work with Ctrl+Space code completion, otherwise you have to use Ctrl+Q to invoke it.
It is not displayed with the new fully automatic code completion introduced in the latest IntelliJ IDEA version, this behavior is by design.