-
Notifications
You must be signed in to change notification settings - Fork 465
Better support of lombok #2805
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
Better support of lombok #2805
Comments
It would be great to support the SuperBuilder annotation 👍 |
@zymotik Could you, please, provide a project example reproducing the error? |
I will ask my highly esteemed colleague @AndreySyagrovskiy 👍 Thank you for your speedy reply @snjeza |
Sorry for the delay, example code to demonstrate the annotation issue in Visual Studio Code. See the readme of the code repository: https://github.com/zymotik/redhat-developer-vscode-java-issue-2805 |
@zymotik Could you, please, create a new issue? |
vscode - v1.72.2
vscode-java - v1.12.0
Hi,
I know that vscode-java support lombok, however, I do wish it can make the support even better.
Currently, 2 things requesting for enhancement
Jump to the field of the lombok-annotated class corresponding to the getter and setter method
If we are to right click on the getC() method, and select "Go to Implementation", it will open the Test.java file and bring me to the top of the class, where the @Getter is. However, most of the time, we want to go directly to the field that is associated with getC() method, which unfortunately, vscode-java doesn't work in this manner. Intellij , however, does this perfectly well.
Refactor the field name should auto refactor all corresponding getter and setter of that field.
If I am to change the field name, say c become xxxx, all the test.getC() should auto update to become test.getXXXX(), rather than expect developer to manually change all of them.
Again, Intellij does this well.
The text was updated successfully, but these errors were encountered: