This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-02-19
Channels
- # announcements (13)
- # asami (43)
- # babashka (35)
- # beginners (175)
- # calva (23)
- # cider (5)
- # clj-kondo (68)
- # cljsrn (4)
- # clojure (61)
- # clojure-australia (7)
- # clojure-europe (20)
- # clojure-gamedev (59)
- # clojure-israel (11)
- # clojure-italy (4)
- # clojure-nl (2)
- # clojure-norway (21)
- # clojure-spec (12)
- # clojure-uk (43)
- # clojurescript (9)
- # cursive (56)
- # data-oriented-programming (5)
- # datascript (1)
- # events (1)
- # fulcro (16)
- # honeysql (46)
- # leiningen (1)
- # malli (4)
- # off-topic (12)
- # pathom (46)
- # re-frame (24)
- # reagent (14)
- # reitit (1)
- # reveal (8)
- # rewrite-clj (16)
- # ring (13)
- # sci (9)
- # spacemacs (14)
- # specter (2)
- # sql (2)
- # tools-deps (1)
- # vim (2)
Could someone kindly point me to the location in the cider docs that discusses how to teach it that some macro acts like defn
or def
? Using mount's defstate
like (defstate foo :start (do-foo))
cider reports that foo
is an unresolved symbol and puts the red squiggle underneath
Cider doesn't put unresolved symbol squiggles, that's usually clj-kondo (either standalone or through clojure-lsp). If it's indeed clj-kondo you're using, here's the docs for what you want: https://github.com/clj-kondo/clj-kondo/blob/master/doc/config.md#unrecognized-macros
Ah many thanks, it is clj-kondo indeed. Sometimes it's difficult keeping track of what is doing what as an emacs neophyte.
I've used a config like this to popup the replon the right side.
(set-popup-rules!
'(
("^\\*cider-repl" :quit nil :side right :size 70)))
In projects where I have two repls (clj and cljs) open, the normal split window isn't working. Is it possible to have both repls visible on the right with a horizontal split?