-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Display Javadoc on hover for property/method #452
Comments
The main idea is to get the Javadoc only if we need and in this case get the Javadoc only for a givenmethod or field or class and stores it in quarkus-ls/qute.ls/com.redhat.qute.ls/src/main/java/com/redhat/qute/commons/JavaElementInfo.java Line 54 in 402a40c
It will require to implement a new JDT LS delegate command handler which should consume the new |
eg. The documentation for `java.lang.String.length()` will be shown when hovering here: ``` {myString.len|gth()} ``` Closes redhat-developer#452 Signed-off-by: David Thompson <davthomp@redhat.com>
eg. The documentation for `java.lang.String.length()` will be shown when hovering here: ``` {myString.len|gth()} ``` Closes redhat-developer#452 Signed-off-by: David Thompson <davthomp@redhat.com>
eg. The documentation for `java.lang.String.length()` will be shown when hovering here: ``` {myString.len|gth()} ``` Closes redhat-developer#452 Signed-off-by: David Thompson <davthomp@redhat.com>
eg. The documentation for `java.lang.String.length()` will be shown when hovering here: ``` {myString.len|gth()} ``` Closes redhat-developer#452 Signed-off-by: David Thompson <davthomp@redhat.com>
eg. The documentation for `java.lang.String.length()` will be shown when hovering here: ``` {myString.len|gth()} ``` Closes redhat-developer#452 Signed-off-by: David Thompson <davthomp@redhat.com>
eg. The documentation for `java.lang.String.length()` will be shown when hovering here: ``` {myString.len|gth()} ``` Closes redhat-developer#452 Signed-off-by: David Thompson <davthomp@redhat.com>
eg. The documentation for `java.lang.String.length()` will be shown when hovering here: ``` {myString.len|gth()} ``` Closes redhat-developer#452 Signed-off-by: David Thompson <davthomp@redhat.com>
eg. The documentation for `java.lang.String.length()` will be shown when hovering here: ``` {myString.len|gth()} ``` Closes redhat-developer#452 Signed-off-by: David Thompson <davthomp@redhat.com>
eg. The documentation for `java.lang.String.length()` will be shown when hovering here: ``` {myString.len|gth()} ``` Closes redhat-developer#452 Signed-off-by: David Thompson <davthomp@redhat.com>
eg. The documentation for `java.lang.String.length()` will be shown when hovering here: ``` {myString.len|gth()} ``` Closes #452 Signed-off-by: David Thompson <davthomp@redhat.com>
Display Javadoc on hover for property/method. This get of javadoc should be done only when the hover require it (aka lazy loading) and not when JavaMethodIndo, JavaFiledInfo are getted to keep proper performance and avoid having memory problem.
The text was updated successfully, but these errors were encountered: