Fork me on GitHub
#vim
<
2021-06-07
>
emilaasa07:06:24

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

dominicm14:06:18

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.

noisesmith15:06:21

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

noisesmith15:06:03

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