This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-04-28
Channels
- # announcements (11)
- # aws (2)
- # babashka (35)
- # beginners (173)
- # calva (3)
- # chlorine-clover (2)
- # cider (17)
- # clara (2)
- # clj-kondo (28)
- # cljs-dev (11)
- # cljsrn (53)
- # clojure (178)
- # clojure-argentina (1)
- # clojure-europe (12)
- # clojure-germany (5)
- # clojure-italy (4)
- # clojure-nl (5)
- # clojure-spec (25)
- # clojure-uk (88)
- # clojurescript (109)
- # conjure (34)
- # cursive (2)
- # data-science (35)
- # datomic (15)
- # emacs (6)
- # events (1)
- # fulcro (28)
- # graphql (15)
- # helix (21)
- # hoplon (7)
- # jobs (4)
- # jobs-discuss (1)
- # joker (15)
- # lambdaisland (1)
- # lein-figwheel (4)
- # local-first-clojure (1)
- # malli (8)
- # meander (17)
- # off-topic (33)
- # parinfer (2)
- # rdf (16)
- # re-frame (3)
- # reagent (21)
- # reitit (14)
- # remote-jobs (5)
- # ring (8)
- # rum (1)
- # shadow-cljs (184)
- # sql (2)
- # testing (1)
- # tools-deps (23)
how to people comment forms in Emacs? I'm just using C-M-@ M-;
. I couldn't find whether Clojure mode has its own key binding for comments
I jump to opening paren and type #_
, or slurp into a (comment ...)
form. In general, I avoid using semicolons to comment out code, because it's easy to lose in-between code / paren balancing that way.
Try C-x C-;
I’ve been working on this mode https://github.com/dotemacs/clojure-comment-dwim.el/blob/master/clojure-comment-dwim.el you might find it useful.
I'd forgotten about (comment)
. C-x C-;
doesn't work because that comments a single line and not the whole form.
Thanks @U3SG7RX7A too!