In Vim, let\'s say I want to replace the contents of one String with the content of another.
Original input
var1 = \"January\" var2
Excerpt from my .vimrc:
" Delete to 'black hole' register nnoremap d "_d vnoremap d "_d
So, you just need to \di"P as your last step (assuming you use \ as a ).
\di"P
\