kotlin-language-server
kotlin-language-server copied to clipboard
Kotlin code completion, diagnostics and more for any editor/IDE using the Language Server Protocol
Related to https://github.com/fwcd/kotlin-language-server/issues/328 Adds caching to the Symbol Index using the recently introduced on disk DB. Since we are now caching the symbol index, the only way to rebuild it...
Currently, the code action for adding missing imports only suggests classes. Often we might want to statically import a Java static method or similar. Those are currently not suggested by...
``` [Error - 11:12:11] async0 Internal error: java.lang.IllegalArgumentException: Bad escape [Error - 11:12:11] java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Bad escape [Error - 11:12:11] at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) [Error - 11:12:11] at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) [Error - 11:12:11]...
Hello! I've been trying to get the LSP server working for me in vscode and spacemacs on and off for a bit, but I consistently run into the same OOM...
The semantic tokens assigned to variables in declaration statements are inconsistent with the tokens assigned to those same variables everywhere they are used. The following sample code illustrates the issue....
I have a problem with the VSCode editor underlining all names from external dependencies in red, and not being able to give me any suggestions. My guess is that it...
Fixes #445 
Hello, running `gradlew :server:test` leads to 8 failed tests. I also noticed the tests are not run as part of github actions. It would really make the codebase more error...
We should create another fixture for tests involving the database and add a bunch of these tests, e.g. for testing the handling of cached dependency paths, to prevent regressions like...
Support non-JVM backends, such as... - [ ] Kotlin/Native: https://kotlinlang.org/docs/native-overview.html - [ ] Kotlin/JS: https://kotlinlang.org/docs/js-overview.html - [ ] Kotlin/Wasm: https://kotlinlang.org/docs/wasm-overview.html The native backend might be particularly interesting for iOS/Android apps...