This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-05-27
Channels
- # admin-announcements (1)
- # announcements (1)
- # babashka (16)
- # beginners (222)
- # bristol-clojurians (6)
- # calva (13)
- # cestmeetup (5)
- # cider (19)
- # cljs-dev (2)
- # cljsrn (4)
- # clojure (65)
- # clojure-europe (31)
- # clojure-nl (1)
- # clojure-norway (1)
- # clojure-uk (33)
- # clojurescript (64)
- # community-development (5)
- # core-async (18)
- # cursive (15)
- # datomic (6)
- # devcards (1)
- # emacs (18)
- # figwheel-main (102)
- # fulcro (51)
- # graalvm (2)
- # helix (8)
- # instaparse (33)
- # jobs (8)
- # jobs-discuss (3)
- # leiningen (42)
- # off-topic (88)
- # pedestal (15)
- # re-frame (18)
- # reagent (26)
- # reitit (15)
- # rum (3)
- # shadow-cljs (119)
- # spacemacs (9)
- # sql (2)
- # tools-deps (7)
Guys, this message pops up when calva starts even when I have clj-kondo
installed:
clj-kondo was not found on the classpath. Debugger decorations will not be enabled. More details:
Any ideas?@punit-naik: I thought we had stopped popping up that message… Might be remembering incorrectly. Which version of Calva are you on?
@pez I am using 2.0.101
The message pops up in the output tab.
Okay thanks.
Yeah, it's just to make you aware that debugger decorations will not work since you do not have clj-kondo on the classpath, as in a dependency loaded into the repl you're connected to.
I felt it's best to make users aware at least, rather than them think some feature doesn't work and not know why.
@pez I am using 2.0.101
I have the following map entry inside my project.clj
:
:checkout-deps-shares ^:replace [:source-paths :resource-paths :compile-path
#=(eval leiningen.core.classpath/checkout-deps-paths)]
Now when I try to create a repl, it says Could not parse project.clj
.
And if I remove the #=
reader macro, it works normally.
Is there any way I can make this work with the dynamic eval #=
?@punit-naik unfortunately not: https://github.com/BetterThanTomorrow/calva/issues/617
Thanks @pez, understood! :thumbsup: