Closed
Description
"let" binding blocks containing complex bindings are not indented properly.
(let [[x
y] (range 2)
[a b] (["foo" "bar"])]
(print x y a b))
Notice that the line that starts with [a ...]
is lined up under the y
in the line above. It should line up under the [x ...
. It appears to be a problem with having 2 s-expressions on the lines starting [x ...