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

How do you create a numbered sequence using visual block mode?

Answer

<C-v>jjg<C-a>

Explanation

Select a column of identical numbers with <C-v>, then press g<C-a> to create an incrementing sequence (1,2,3...) from the selected numbers.

Next

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