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

How do you append text to multiple lines using visual block mode?

Answer

<C-v>jjA text <Esc>

Explanation

Enter visual block with <C-v>, select lines with j, press A to append after the block. Type text, press <Esc> to apply to all lines.

Next

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