fwcd

Results 150 comments of fwcd

Any updates on this? I'd love to have this fix until the C++ side is rewritten (which seems to be a larger undertaking). If we can merge this, would it...

Currently developing a [language server and an extension for Kotlin](https://github.com/fwcd/kotlin-language-server), I have [thought about this](https://github.com/fwcd/kotlin-language-server/issues/4). In a mixed Kotlin-Java Gradle project both languages do recognize dependencies properly. They fail when...

@coffeepac Implementing that in KotlinLanguageServer first might be easier, because the KLS repo has a smaller codebase and is pretty easy to setup. Copying any classfiles might not even be...

@p-bakker For another server-side implementation of a debug adapter using LSP4J, you could take a look at [Kotlin Debug Adapter](https://github.com/fwcd/kotlin-debug-adapter).

@p-bakker DAP (and LSP) are transport-independent, so you can use whatever you want here, though stdio is usually the default and pretty easy to implement: ```java InputStream in = System.in;...

A thread is probably the easiest solution, but I would not want to cause any race conditions with clients that rely on the fact that `initialized` happens strictly after the...

@jonahgraham Thank you, I will try the first approach until a clean solution is integrated.

Any updates on this? If I read this correctly, an updated version of `core-foundation-rs` should be released.

Note that JDK symbol lookup has already shipped a while ago in #339, but I'll leave this open to track progress on support for definitions in the Kotlin standard library.

> is this issue the job of tree-sitter-kotlin? Assuming it is about the TextMate grammar used by the VSCode extension, no, since the TM grammar is hosted in this repo