Fork me on GitHub
#vim
<
2016-06-25
>
gphillips18:06:51

What are others using to perform let block vertical alignment in vim? turning this:

(let [a (expr)
      my-fn #(some-really-great-fn %)
      [a b c] (vector of data)
      {:keys [a b c]} (map of data)
      simple-string "string value"
      keyw :keyword])
into this
(let [a               (expr)
        my-fn           #(some-really-great-fn %)
        [a b c]         (vector of data)
        {:keys [a b c]} (map of data)
        simple-string   "string value"
        keyw            :keyword])