kotlin-language-server icon indicating copy to clipboard operation
kotlin-language-server copied to clipboard

Kotlin code completion, diagnostics and more for any editor/IDE using the Language Server Protocol

Results 217 kotlin-language-server issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

index

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...

bug
dependency resolution

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.

enhancement
experimental
stretch goal

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' } ```...

bug
dependency resolution
gradle

### 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...

enhancement

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...

bug

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....

bug

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...

enhancement

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

bug
editor support