Is parinfer formating my code like this?
the body of render
insists on being aligned with the arguments
whereas this isn't the case with defn
Sorry, wrong culprit! It's the clojure mode not parinfer
Quick sanity check just to help me wrap my head around things: In Lisp languages, is it normal for people to format code in this style?
(foo m {:a 1
:b 2} bar)
I haven't been writing Clojure for too too long, but I'm more accustomed to seeing something like this:
(foo m {:a 1
:b 2}
bar)
...or this...
(foo m {:a 1
:b 2}
bar)
I'd expect bar
to be aligned with m