How do I select a rectangular block of text which extends beyond the end of the line in Vim?
Suppose that I have
aa
bbb
cc
dddd
ee
I would like to select a rectangular block that extends four characters on all lines. If _ is considered white-space, then I want:
aa__
bbb_
cc__
dddd
ee__
The rectangular visual block, C-v, only extends as far as the end of the last line selected:
In Emacs, I can do what I want using C-x <SPC> (rectangle-mark-mode). ;)
