daplf
daplf
Hey. Source jars for maven are already supported as @fwcd mentioned (take a look at the class path resolvers code). This looks really cool btw. In addition to fixing https://github.com/fwcd/kotlin-language-server/issues/309...
Hey, this is currently not supported. There is an [open pull request](https://github.com/fwcd/kotlin-language-server/pull/318) that might fix https://github.com/fwcd/kotlin-language-server/issues/309 but it still won't solve your issue in particular, because we have another problem...
@fwcd conflicts fixed. For some reason, one of the CI builds failed, but I can't reproduce it locally (tests are green). > Writing https://github.com/fwcd/kotlin-language-server/issues/352 got me thinking, perhaps we could...
@fwcd Btw, we should also assume clients won't always give us a location to cache the data (i.e., not all clients will send the `storagePath`). In these cases, we need...
> I didn't know that H2 supported on-disk databases, but it does, which is great, so that seems like the easiest path forward. Although I think the current JSON implementation...
Hey @jackieli-tes The re-indexing is done on file changes. But it should only be re-indexing symbols in a file you've changed. This is usually done on `textDocument/didChange`. The output you...
Thanks! That output helps. The language server logs confused me a bit, but the increase in number of symbols apparently makes sense (it's logging the total number of symbols indexed...
> the compilation is needed once and only if it's not compiled before? Well, during a session this is true, but on startup it's not because the language server doesn't...
Yeah, perhaps I wasn't clear. Let me try to explain it better. When I'm talking about the language server compiling the files, I'm not talking about the usual compilation you...
https://github.com/fwcd/kotlin-language-server/issues/160 touches a bit on caching dependencies but yeah, I don't think there's a dedicated issue for caching. Note that I'm talking about caching multiple things. The symbol index would...