views:

44

answers:

1

In vi/vim is there any way to make Visual Block Mode unconstrained by line endings?

+4  A: 
:set virtualedit=block

See :help 've' for more details.

too much php
Note that for appending you still have to use `A` instead of `I` if the visual block extends past a line ending.
Benoit