Fork me on GitHub
#vim
<
2016-06-27
>
dominicm08:06:50

I'd be inclined to try: gai[<Space><CR> to align things

gphillips21:06:57

That almost works for the simple case…like

(let [a (something)
      hello (goodbye)
      this (that)])
which will look like:
(let        [a (something)
      hello (goodbye)
      this  (that)])
I had to block-wise select the inner bracketed contents to get to work. After selection you can do ga<Space> and that will look correct:
(let [a     (something)
      hello (goodbye)
      this  (that)])

gphillips21:06:19

But that falls apart on my original example