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

How do you delete a visual selection?

Answer

d in visual mode

Explanation

Select text visually and press d to delete the selection. The deleted text is stored in the unnamed register for pasting.

Next

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