Donnie West

Results 13 comments of Donnie West

This seems to be a duplicate of #164, which is hopefully resolved by #186

Hrm, we might need something a bit more flexible to handle the various directory structures that Android uses to store those compiled class files Right now, we're coupled to a...

@NICHTJ3 Nope, I've not had time to really look into it. It basically boils down to two approaches though: 1. Code in all possible Android class paths. This should be...

@resolritter the PR you referenced ( #186 ) is what I'd point you to. Instead of having one path to search for classes, I'd change that to an array of...

Oh, this might be a much better solution overall anyway. It'll also pull in generated files from Dagger and Jetpack Navigation. Out of curiosity, does this also update if the...

@kheaactua do you happen to have a sample project this is happening on? It'd be useful to reason about I've a personal project this just popped up on, and it...

Gotcha. Yeah, looks like the same issue. https://github.com/fwcd/kotlin-language-server/blob/58966bc18dd5bf82fdfcf7a2f44bab3622f6907a/shared/src/main/kotlin/org/javacs/kt/classpath/WithStdlibResolver.kt#L14-L42 I'm finding that if we modify the function here to: ``` pathString.contains("kotlin-stdlib") && !pathString.contains("kotlin-stdlib-common") && pathString.contains("jdk") ``` It solves the issue for...

@mickaelistria do you have an example of an LSP that currently does this? How do they handle editors that have this functionality built in without conflicting? Please provide any configs...

Documentation on our end is going to be pretty laborious since every client has their own way of defining these custom commands. If you're trying to implement this for VIM...

FWIW - I just had this exact issue pop up on a fresh Arch installation. Turned out I had set my `locale` incorrectly and it needed to be something that...