kotlin-language-server
kotlin-language-server copied to clipboard
Kotlin code completion, diagnostics and more for any editor/IDE using the Language Server Protocol
Hi, Firstly, thanks for this awesome project. My setup is Neovim 0.6.1 with coc.nvim. I'm staying on the HEAD of the master branch. Since #323 , I'm experience huge CPU...
Somewhere along the line, the plus in the `file://` URL is converted to a space, causing a crash by a `NoSuchFileException`. I found this while writing a minecraft mod; I...
Investigate support for incremental compilation using the [official Kotlin compiler API](https://github.com/JetBrains/kotlin/tree/master/compiler/incremental-compilation-impl) instead of the mechanism currently used ([as described in the README](https://github.com/fwcd/KotlinLanguageServer/blob/master/README.md#this-repository-needs-your-help)), because this might improve performance considerably.
All of the dependencies listed in my build.gradle are showing up as unresolved dependencies. dependencies: ``` dependencies { implementation 'com.typesafe.akka:akka-actor_2.12:2.5.21' testCompile 'com.typesafe.akka:akka-testkit_2.12:2.5.21' testCompile 'junit:junit:4.12' implementation 'org.jetbrains.kotlin:kotlin-stdlib' testImplementation 'junit:junit:4.12' } ```...
### Motivation In IntelliJ I can run a Kotlin file that does not have a class: e.g. a file named `Main.kt` ``` fun main() { println("hello World") } ``` (No...
While I was working on https://github.com/fwcd/kotlin-language-server/pull/319 I noticed that requesting a definition on the declaration site of a property, a method or a method argument doesn't work. Note that this...
Using VS Code Kotlin (fwcd.kotlin) extension. The extension installed the language server, and on startup, gave the error: "Kotlin language server crashed 5 times in the last 3 minutes and...
Related: https://github.com/fwcd/vscode-kotlin/issues/62 https://www.mail-archive.com/[email protected]/msg99872.html A workspace path includes specific unicode characters will cause the language server crashed. Launching a VM with Shift-JIS locale, the error disappeared. Output: ``` Server initialization failed....
When we hover variables, types, methods, etc, we're only showing a brief signature. We could add the javadoc of those symbols here as well, much like the Java language server...
Followed instructions on the editor specific configs, still doesn't work, also followed instructions on the coc.nvim site, still doesn't work, coc works fine with other languages