This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-04-07
Channels
- # announcements (2)
- # beginners (25)
- # calva (16)
- # cljdoc (37)
- # cljsrn (24)
- # clojure (204)
- # clojure-nl (4)
- # clojure-spec (34)
- # clojure-uk (3)
- # clojurescript (13)
- # cursive (8)
- # data-science (3)
- # dirac (21)
- # figwheel-main (1)
- # luminus (3)
- # off-topic (45)
- # pedestal (3)
- # planck (2)
- # re-frame (5)
- # shadow-cljs (270)
- # spacemacs (5)
Problem #1: Hello, how to solve "Clojure command not configured"? Thank you!
(Trying to start REPL in a deps.edn project, latest IntelliJ. clj
works from the terminal and seems correctly configured at ... Build Tools - Clojure Deps. I have just switched from IntelliJ CE 2018.? where it worked to 2019.1)
Restarting IntelliJ and/or switching to using tools.deps directly and back to CLI fixed it.
Problem #2: The page https://cursive-ide.com/userguide/support.html mentions the url https://cursive-ide.com/datomic-stubs-0.9.5153.jar but it returns 404 @cfleming
Problem #3: I have followed https://github.com/danielcompton/defn-spec/blob/master/doc/cursive.md but (ds/defn myfn ..
still complains that "myfn cannot be resolved". How can I troubleshoot? Thank you!
(IntelliJ 2019.1, Cursive 1.8.1)
@U0522TWDA you can let your cursor over the ds/defn
then will appear a yellow lamp
https://www.jetbrains.com/help/idea/intention-actions.html
Then you set Resolve ds/defn ...
to resolve as clojure.core/defn
I see the problem - the highlight is on the name of the function and thus symbol resolution is added but for the name of the function - myfn - and not for the macro ds/defn
as needed. So I need to take care to click at the ds/defn itself and wait for the lightbulb, even though it is not highlighted.
I see the problem - the highlight is on the name of the function and thus symbol resolution is added but for the name of the function - myfn - and not for the macro ds/defn
as needed. So I need to take care to click at the ds/defn itself and wait for the lightbulb, even though it is not highlighted.