How do you select a rectangular column of text?
<C-v>jjll
Press for visual block mode, then use movement keys to select a rectangle.
<C-v>jjll
Press for visual block mode, then use movement keys to select a rectangle.
<C-v>j$
In visual block mode, press $ to extend each line's selection to its end, even if lines have different lengths.
<C-v>jjr*
Enter visual block with , select a column with j, press r followed by the replacement character.
<C-v>jjA text <Esc>
Enter visual block with , select lines with j, press A to append after the block.
<C-v>jjI text <Esc>
Enter visual block with , select lines with j, press I to insert before the block.
<C-v>jjg<C-a>
Select a column of identical numbers with , then press g to create an incrementing sequence (1,2,3.
<C-v>jjll"ay
Enter visual block mode with , select the block, then "ay to yank the block into register a.
qaI <Esc>jq
Record a macro that inserts two spaces at the beginning of the line and moves down.