Can `:binding` respect `(...)` as well as `[...]`?
I'm creating a language embedded within Clojure, and some language-level decisions lean a little closer to Scheme. Currently the following gets formatted great:
```clojure
(let [a 0
bc 1]
d)
```
I'd like the following to work the same way:
```
(let (a 0
bc 1)
d)
```
but unfortunately it gets formatted as:
```
(let (a 0
bc
1)
d)
```
Similar story for `fn`.
Any way to have `:binding` respect lists, not just vectors?
Love zprint btw — thank you for making it 🤩
6 条评论