JetBrains / la-clojure

Clojure plugin for IntelliJ IDEA
Apache License 2.0
220 stars 49 forks source link

let statement indenting is incorrect #50

Closed trptcolin closed 11 years ago

trptcolin commented 11 years ago

This is the behavior when formatting clojure code with a 2-line let binding:

(let [foo (bar :fizz
  :bang)]
  (other-stuff))

I'd expect it to be like this:

(let [foo (bar :fizz
               :bang)]
  (other-stuff))
trptcolin commented 11 years ago

I see that this is already addressed in master by #39 - apologies for the noise.