vimtricks.wiki Concise Vim tricks, one at a time.

How do you change (delete and enter insert mode) for visual selection?

Answer

c in visual mode

Explanation

Select text visually, then press c to delete the selection and enter insert mode. The deleted text goes to the unnamed register.

Next

How do I visually select a double-quoted string including the quotes themselves?