This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-01-09
Channels
- # announcements (1)
- # atlanta-clojurians (1)
- # beginners (198)
- # calva (4)
- # cider (16)
- # clara (8)
- # cljs-dev (14)
- # cljsrn (4)
- # clojure (204)
- # clojure-europe (3)
- # clojure-gamedev (2)
- # clojure-italy (8)
- # clojure-nl (17)
- # clojure-poland (3)
- # clojure-russia (20)
- # clojure-spec (32)
- # clojure-uk (45)
- # clojurescript (59)
- # community-development (1)
- # core-async (25)
- # cursive (20)
- # datomic (47)
- # emacs (7)
- # fulcro (8)
- # iot (1)
- # iotivity (2)
- # jobs (1)
- # jobs-discuss (8)
- # juxt (11)
- # luminus (5)
- # nrepl (4)
- # off-topic (136)
- # onyx (24)
- # other-lisps (1)
- # parinfer (74)
- # pedestal (1)
- # planck (3)
- # portkey (67)
- # random (1)
- # re-frame (28)
- # reagent (11)
- # reitit (9)
- # remote-jobs (3)
- # ring-swagger (2)
- # rum (3)
- # shadow-cljs (96)
- # slack-help (3)
- # spacemacs (6)
- # tools-deps (3)
- # unrepl (1)
- # vim (4)
@cfleming - I have a lein project depending on figwheel-main (currently 0.2.0 but same problem on earlier versions.) On importing the project, cursive gives an error No dispatch macro for: :: No dispatch macro for: :
Cursive has been working with this library fine... I think the problem must have started on a cursive upgrade. I am on 1.8.0-2017.3
any info welcome. thanks
@U051B9FU1 Do you get a stacktrace in your log for that?
@cfleming sometimes I have an issue that I can't see the test error diff, when I try to click on the orange exclamation the editor keeps adding/removing break points on that line, but never opens the diff dialog
I had this bug a couple years ago and it turned out to be caused by a conflicting dependency in my profiles.clj
I run into this too
Dont know how to fix it
Not sure whether it's a bug or a feature but that only happens to me when there are runtime errors, not when tests fail. EDIT: doesn't seem to be the case here though 😕
I want to pretty format a large edn file that has everything on one line. If I do (Code->Reformat Code) it will put some spaces in, but it stays on one line. Is there a setting to make it reformat with newlines and indentations like IntelliJ does with JSON files? (My current workaround is to copy, paste and eval it in the REPL and then to copy it from the output into the edn file)
@dmarjenburgh Not a cursive-specific solution, but you could do it easier from the repl like this:
(spit "myfile.edn" (with-out-str (clojure.pprint/pprint (read-string (slurp "myfile.edn")))))
That looks like the sort of thing that would make a good planck/lumo script.
@dmarjenburgh So there isn’t a solution for that yet, but it’s something a few people have asked for. Your workaround sounds like the best option in the meantime.