Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用SonarLint 1.3. Eclipse Mars我的问题是当出现 SonarLint 问题时,它会阻止所有其他工具提示出现。
SonarLint 1.3
Eclipse Mars
示例:如您所见,Hashtable由于 SonarLint 提示,未显示工具提示。
Hashtable
有没有办法同时显示 Eclipse 工具提示和 SonarLint 提示?
这是标准的 Eclipse 行为,问题标记工具提示将具有比 JDT 悬停工具提示更高的优先级。
如果您想强制显示 JDT 工具提示,可以使用一些键盘快捷键。查看 Java 的 Eclipse 首选项 -> 编辑器 -> 悬停
例如,要查看在没有 SonarLint 问题时显示在 Hashtable 上的 Javadoc 工具提示,您应该按 Ctrl+Shift
例子:
我找到的最简单的解决方案是“显示视图”javadoc。通过这样做,当您将光标放在代码片段内时,您将能够在 javadoc 视图中看到 SonarLint 工具提示和与代码片段相关的 javadoc。是的,我知道这不是真正的“悬停”,但这是我迄今为止发现的唯一方法。