-
Notifications
You must be signed in to change notification settings - Fork 24
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
Implement LSP #10
base: master
Are you sure you want to change the base?
Implement LSP #10
Conversation
NB. This causes UI to freeze because it's running on EDT. Better to move out most of the PSI element operations out of EDT.
* Remove an unused method * Remove unnecessary semicolons * Remove unnecessary initialization * Apply google-java-format
The completion calculation code has been producing warnings since it's unnecessarily running on the event dispatch thread. Extract the code and run outside of it.
Do you plan on continue working on that? |
I'm currently inclined to extending https://github.com/georgewfraser/java-language-server (my fork is at https://github.com/draftcode/java-language-server with some patches). After I changed my job and the codebase that I work on gets much smaller, this java-language-server is working in a reasonable time. There are still some missing pieces, but my daily use has been shifted to that fork. |
No description provided.