Weird behaviour of -> and ->> indention inside defn
Gonzih opened this issue · 2 comments
Gonzih commented
Hi, I love current indention of -> and ->> but I found something strange when I'm trying to use -> or ->> inside defn
(defn a [b]
(-> k
z
d
c))
(defn z [k]
(->> a
b
c))
(defn z []
(->> a
(-> a
b
c
z)))But it's ok when argument list is on separate line:
(defn a
[b]
(-> a
b
c))
Also nested -> or ->> usage can be indented in the wrong way:
(-> a
b
(->> map
(fun)
k)
i)vim version is 7.3.875
Btw thanks for keeping vim and clojure together! :)
guns commented