Intellij IDEA自动显示javadoc
当我在 Netbeans 上编码时,它会自动完成代码并显示 Javadocs。但是,当我使用 Intellij IDEA 时,如果单击 Ctrl+Space 我可以看到自动完成,如果单击 Ctrl+Q 我可以单独查看javadoc。
每当我在 Intellij IDEA 中看到自动完成或单击 Ctrl+Space 时,是否可以像 Netbeans 一样看到 element 的 Javadoc?
When I am coding at Netbeans it autocompletes the code and show Javadocs. However when I am using Intellij IDEA if I click Ctrl+Space I can see the auto-complete and if I click Ctrl+Q I can see the javadoc seperately.
Is it possible to see the Javadoc of element whenever I see auto-complete or click Ctrl+Space at Intellij IDEA as like Netbeans?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
设置
|编辑器
|常规
|代码完成
|在 __ ms 内显示文档弹出窗口
。旧版本:
设置
|编辑器
|常规
|代码完成
|自动弹出文档(毫秒)
。更新:最新版本有一个在鼠标移动时显示 JavaDoc 的选项。
Settings
|Editor
|General
|Code Completion
|Show the documentation popup in __ ms
.Older versions:
Settings
|Editor
|General
|Code Completion
|Autopopup documentation in (ms)
.UPDATE: latest versions have an option to show JavaDoc on mouse move.
文件->设置->编辑->代码完成。
检查自动弹出文档(以毫秒为单位)并选择延迟。
File -> Settings -> Editor -> Code completion.
Check Autopopup documentation in (ms) and choose delay.
在 IntelliJ IDEA 14 中显示 Javadoc:
当您编写代码时:
文件 ->设置->编辑->一般->代码完成->自动弹出文档(毫秒)
仅当您按 CTRL+SPACE 时才可用。如果您在弹出时选择图钉图标,则更有用。文档窗口将添加到右侧的选项卡中。稍后,我建议调整窗口大小并取消选中
Pinned
属性。鼠标悬停时:
文件 ->设置->编辑->一般->显示有关鼠标移动的快速文档
Show Javadoc in IntelliJ IDEA 14:
When you write code:
File -> Settings -> Editor -> General -> Code Completion -> Autopopup documentation in (ms)
It's only available when you press CTRL+SPACE It's more usable if you select the pin icon when it popups. The documentation window will be added to the tabs on the right. Later on I recommend to resize the window and to uncheck the
Pinned
property.On mouse hover:
File -> Settings -> Editor -> General -> Show quick documentation on mouse move