In Vim you can use Ctrl+v to select a vertical block of code. This is pretty cool, as this way you can insert a rectangular block of text anywhere in your text. A feature I haven't seen anywhere else yet.
But say I have a text like:
1 abcde
2 abcdefg
3 abcdefg
4 abc
I want to select this full block as vertical block. If I'm on the a
of line 1, and start selection, then move down to line 4, I can only move the cursor to the last character c
in that line. So the lines above are cut off, giving me this selection:
1 abc
2 abc
3 abc
4 abc
Is there a way to get the full text selected as vertical block?