vim

For discussion on all things (neo)vim.
walterl 2021-02-15T21:14:27.101100Z

What do you guys use to vertically align map values? (I'm pretty sure this has been asked a few times before, but I forget the answers 😕)

walterl 2021-02-15T21:15:22.101300Z

I.e. Changing

{:foo 123
 :barbarbar 234}
into
{:foo       123
 :barbarbar 234}

walterl 2021-02-15T21:17:23.102500Z

I'm an EasyAlign user, but it looks like it prefers working on whole lines, changing

(let [x {:foo 123
         :barbarbar 234}])
into
(let                [x {:foo 123
         :barbarbar 234}])