vim

For discussion on all things (neo)vim.
emilaasa 2021-06-07T07:22:24.077100Z

Can you slurp words into "" somehow? I often end up with things looking like this: (str "Hello " "|" some-expression) when I'm editing text.

dominicm 2021-06-07T14:49:18.077700Z

I don't think vim-sexp supports that. I usually just end up using x to delete the closing " and p to put it back. It's a little bit annoying.

2021-06-07T15:52:21.078100Z

you could construct that command using di" as a building block I bet

2021-06-07T15:53:03.078900Z

cursor inside "foo" - di" gets you foo in the yank buffer and a "" left in the document