On 10/3/06, Ivan Vecerina <[EMAIL PROTECTED]> wrote:
This is a problem I am occasionally stumbling on: as I am done typing some new next in insert mode, I want to highlight and erase some text ahead of the insert point.Best case, I can type: <ESC>lv But if I am at the end of the line, this won't work (the last character I inserted will be selected as well).
I you have 'whichwrap' that includes < and > (as in set whichwrap=<,>; see :help 'ww') then you can use <Esc><Right>l Yakov
