kotlin-language-server
kotlin-language-server copied to clipboard
Kotlin code completion, diagnostics and more for any editor/IDE using the Language Server Protocol
I really love using the remote docker container extension so I don't have to install all of these runtimes on my host PC. I'm wondering if this is causing the...
### Motivation I'd like using VS Code to work on Kotlin projects instead of IntelliJ IDEA. But that's not the case for my co-workers. When formatting code, I get different...
**build: 1.1.2** Each time I open up a kotlin project using emacs, the LSP connects, and soon after, the dependency resolution begins which takes a while to complete. Here are...
Teamcity kotlin files [typically live in _.teamcity/_](https://www.jetbrains.com/help/teamcity/kotlin-dsl.html#Project+Settings+Structure). Example: ``` $ git clone https://github.com/tekumara/teamcity-kotlin-example $ tree -a teamcity-kotlin-example teamcity-kotlin-example .... └── .teamcity ├── common.kt ├── pom.xml └── settings.kts ``` When I...
The current solution to find the dependencies of a module/project invokes Gradle from the command line and parses the output: https://github.com/fwcd/KotlinLanguageServer/blob/322594f491369f51fdda33295101098d81d5bf3d/src/main/kotlin/org/javacs/kt/classpath/GradleDependencyResolver.kt#L54-L62 A more elegant solution, however, would be to have...
### Description After adding packages to my `gradle.build.kts`, auto-imports for the new things weren't working for me. I was able to fix by restarting the language server from the command...
(new to Kotlin, gradle, Android Apps, _etc_) I got coc and kotlin-langugage-server working in Vim, but when I open my kotlin file every symbol is basically an error: ``` [kotlin...
What is the preferred way to access content inside tests after invoking `open(file)` in a test fixture?
@fwcd I have discovered some issues with workspace and document symbols in that they do not comply with the spec constraints on using some or all of the symbol kinds...
I'm getting an "unresolved reference" (`kotlin(UNRESOLVED_REFERENCE)`) error for all symbols imported from Java files generated in the target directory. Any idea what could be the problem, and/or how to debug...