This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-08-14
Channels
- # announcements (31)
- # babashka (9)
- # beginners (4)
- # calva (67)
- # cider (6)
- # clj-yaml (10)
- # clojure (105)
- # clojure-austin (8)
- # clojure-bay-area (1)
- # clojure-europe (12)
- # clojure-germany (3)
- # clojure-nl (1)
- # clojure-norway (7)
- # clojure-uk (2)
- # clojurescript (5)
- # core-logic (4)
- # data-science (29)
- # datomic (6)
- # dev-tooling (5)
- # emacs (3)
- # hyperfiddle (22)
- # introduce-yourself (4)
- # lsp (8)
- # malli (10)
- # off-topic (8)
- # pathom (74)
- # polylith (39)
- # practicalli (1)
- # reitit (3)
- # shadow-cljs (2)
- # spacemacs (3)
- # squint (4)
- # tools-deps (4)
does clojure-lsp
support navigating to Java source inside artifact-sources.jar
instead of decompiling class from artifact.jar
? I am trying to understand if I am missing a configuration or this is not implemented.
Yes, It's a recently added feature, but if your jar has both source and compiled class, not sure what will be chosen
I have 2 jars one with sources and one with classes in local maven ~/ .m2/.../artifact/
maybe the sources are not picked up
First, check the classpath that clojure-lsp is using, you can get that with lein classpath or clj -Spath
The classpath command helped me. After adding the source artefact to deps.edn I can see that clojure-lsp is trying to navigate to source file. My confusion was that I thought that clojure-lsp automatically can find *-sources.jar
. But I can workaround this, thanks 👍
@ericdallo Is the nightly
build broken right now?