Roland Grunberg

Results 612 comments of Roland Grunberg

CC'ing @fbricon and @testforstephen for comment. I think building a project has only been a requirement for us in that it helps provide useful information for navigating/editing/running/debugging the codebase.

lsp4j certainly supports it. The problem I see for Java, is that the [API](https://microsoft.github.io/language-server-protocol/specifications/specification-3-17/#linkedEditingRanges) is only meant for linking content in the same document. However, renaming a public field, or...

I see `/etc/java/jdk-11.0.12.7_adopt/bin/java` in the logs, so that would indicate you're running with Java 11. Is this still happening ? If you want to just build the language server, you...

The logs seem to show the client (VS Code) sent a shutdown request near the bottom, which initiated the stopping of the language server. Not sure what would be causing...

If I attempt to build the project as-is, I get : ``` Could not run phased build action using connection to Gradle distribution 'https://services.gradle.org/distributions/gradle-7.0-rc-1-bin.zip'. Build completed with 2 failures. Build...

Noticed a little while ago you mentioned "But it works untill the server is shutted down." . If that's the case, then it's likely because the lightweight server mode is...

I'll keep this issue open for now because it shows an actual issue that would be nice to solve. Specifically : 1. Client `java.server.launchMode` mode is set to `Hybrid` (usually...

Looking through JDT bugzilla, I see quite a few cases over the years of unexpected resource leaks reported. None seem as straightforward as this though. I think our best bet...

Looking at https://github.com/eclipse/eclipse.jdt.ls/blob/5483c3a365cbf27911d8fe0a905b651bd0de93d9/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/handlers/CodeActionHandler.java#L173 & https://github.com/eclipse/eclipse.jdt.ls/blob/5483c3a365cbf27911d8fe0a905b651bd0de93d9/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/handlers/CodeActionHandler.java#L327 We sort first by the code action kind, which is just a string, and seems to be about as unique as the name of the...

I looked upstream in JDT and the closest thing I could find was https://bugs.eclipse.org/bugs/show_bug.cgi?id=25800 . Otherwise, it seems there is no option in errors/warnings to report such issues. This could...