This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-12-07
Channels
- # adventofcode (40)
- # aws (15)
- # babashka (76)
- # beginners (39)
- # calva (6)
- # cider (3)
- # clj-kondo (3)
- # clojure (89)
- # clojure-austin (1)
- # clojure-australia (4)
- # clojure-europe (42)
- # clojure-italy (9)
- # clojure-nl (27)
- # clojure-spec (8)
- # clojure-uk (17)
- # clojurescript (9)
- # conjure (1)
- # data-science (1)
- # datomic (19)
- # deps-new (4)
- # docker (9)
- # emacs (5)
- # events (1)
- # fulcro (36)
- # kaocha (31)
- # lambdaisland (5)
- # leiningen (3)
- # membrane (3)
- # nrepl (10)
- # off-topic (31)
- # pedestal (7)
- # reveal (47)
- # shadow-cljs (35)
- # sql (9)
- # test-check (1)
- # tools-deps (24)
- # uncomplicate (12)
- # xtdb (5)
Hello everyone 🙂 Is there an easy way to change the indentation of a user macro in clojure mode? I have code that looks something like this:
(|> 1
|> inc
|> inc)
But would like to have my indentation like so:
(|> 1
|> inc
|> inc)
Looking at https://github.com/clojure-emacs/clojure-mode#indentation-of-macro-forms it only seems that one can define indentation for built-in macros... but maybe I'm missing something?define-clojure-indent
is a elisp macro, that's why accepts anything that may be a clojure macro like your-macro
Thank you for the response! Trying
(define-clojure-indent
(|> 'defun))
changed the indentation 🙂
Only problem is is that it's 1-off from being what I'd like it to be 😞
(|> N
|> inc
|> inc)
The way I want it is a weird case and I doubt much clojure code would be styled like that (and I am only doing it for fun).