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

How do you replace a column of characters in visual block mode?

Answer

<C-v>jjr*

Explanation

Enter visual block with <C-v>, select a column with j, press r followed by the replacement character. Replaces all selected characters.

Next

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