1
0
forked from aniani/vim

updated for version 7.0f05

This commit is contained in:
Bram Moolenaar
2006-04-29 22:01:03 +00:00
parent d8fc5c0b99
commit 06a89a5159
13 changed files with 120 additions and 83 deletions

View File

@@ -925,6 +925,15 @@ doESCkey:
if (echeck_abbr(Ctrl_O + ABBR_OFF))
break;
ins_ctrl_o();
#ifdef FEAT_VIRTUALEDIT
/* don't move the cursor left when 'virtualedit' has "onemore". */
if (ve_flags & VE_ONEMORE)
{
ins_at_eol = FALSE;
nomove = TRUE;
}
#endif
count = 0;
goto doESCkey;