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

How do you select to end of line for multiple lines in block mode?

Answer

<C-v>j$

Explanation

In visual block mode, press $ to extend each line's selection to its end, even if lines have different lengths. Useful for ragged-edge text.

Next

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