Eric Dallo
Eric Dallo
@lasiltan I believe nvim is the only client which uses clojure-lsp config `dependency-scheme` as `zip`and not `jar`, so it might be related to that, you can try changing it and...
hum, it may be some configuration in nvim for that so 🤔 nvim is the only editor I have few context about how it works, but I can assure you...
@frankitox I intend to take a look soon at this, is there anything missing from your part?
@frankitox sorry, I'm focusing on Conj's talk this weekend, I intend to check that after get back from Conj!
That was a deisgn decision unfortunatelly, because how we can know what should be the correct one? there is no classpath correct order, in the end is a string generated...
Yeah, we can't know for sure for all other tools (deps, shadow, bb etc), I believe we have to take a different approach here
yes, we rely on java classpath, but I'm not sure they all follow that rule, but if so, I believe we can make that work.
@klauswuestefeld we have [this function](https://github.com/clojure-lsp/clojure-lsp/blob/c6cac7a7f2b66f70b5c76a9c71336d6f0c8671d9/lib/src/clojure_lsp/queries.clj#L134) which checks first the internal analysis and later external analysis (deps), isn't that enough? What case we want the external analysis instead of the internal...
I think the rationale we used at that time was the same of 2 defs in the same file, you should consider the last as it's the one used. There...
Check https://clojure-lsp.io/development/#testing, please add tests if possible, it's the most important part for those kind of changes