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
{{ message }}
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
The implementation of Hover doesn't provide the same behaviour via plugin in Intellij IDEA as in native form in VS Code.
When there is no documentation to display (onHover() returns undefined), Intellij still displays something, usually it's documentation of the last symbol that really has it defined.
Keyword with documentation:
Keyword without documentation:
I also tried to return just empty string (return { contents: "" };) instead of undefined, but that also doesn't work, because Intellij displays small blank documentation window:
In VS Code both implementations work well - when there is no defined docomentation nothing is displayed. Is there a way how to make it work also in Intellij with this plugin or is it a bug that needs to be fixed?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The implementation of Hover doesn't provide the same behaviour via plugin in Intellij IDEA as in native form in VS Code.
When there is no documentation to display (onHover() returns
undefined
), Intellij still displays something, usually it's documentation of the last symbol that really has it defined.Keyword with documentation:
Keyword without documentation:
I also tried to return just empty string (
return { contents: "" };
) instead ofundefined
, but that also doesn't work, because Intellij displays small blank documentation window:In VS Code both implementations work well - when there is no defined docomentation nothing is displayed. Is there a way how to make it work also in Intellij with this plugin or is it a bug that needs to be fixed?
The text was updated successfully, but these errors were encountered: