You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
packageorg.acme;
/** * This is some documentation, isn't it so cool? * * @see System */publicclassMyDocumentedClass {
publicvoidprintSomeMessage() {
System.out.println("Hello, World!");
}
publicvoidmyCoolMethod() {
MyDocumented
}
}
Hover over MyDocumentedClass. Notice how System is a link, and when you click it, it opens the System class.
Invoke completion after MyDocumented. Notice how the same documentation appears, but
Current Result
Documentation links do not work in completion documentation.
Expected Result
Documentation links in completion documentation work the same as in hover documentation.
Environment
Steps To Reproduce
MyDocumentedClass.java
:MyDocumentedClass
. Notice howSystem
is a link, and when you click it, it opens theSystem
class.MyDocumented
. Notice how the same documentation appears, butCurrent Result
Documentation links do not work in completion documentation.
Expected Result
Documentation links in completion documentation work the same as in hover documentation.
Additional Informations
See redhat-developer/vscode-microprofile#246 for a fix I did in vscode-microprofile.
The text was updated successfully, but these errors were encountered: