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

How do you select a rectangular column of text?

Answer

<C-v>jjll

Explanation

Press <C-v> for visual block mode, then use movement keys to select a rectangle. j extends down, l extends right. Works across lines.

Next

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