mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.0157
This commit is contained in:
@@ -3724,10 +3724,13 @@ end:
|
||||
&& curwin->w_cursor.col > 0
|
||||
&& !(restart_edit || (State & INSERT)))
|
||||
{
|
||||
--curwin->w_cursor.col;
|
||||
#ifdef FEAT_VIRTUALEDIT
|
||||
col = curwin->w_cursor.col;
|
||||
#endif
|
||||
dec_cursor();
|
||||
#ifdef FEAT_VIRTUALEDIT
|
||||
if (ve_flags == VE_ALL)
|
||||
++curwin->w_cursor.coladd;
|
||||
curwin->w_cursor.coladd = col - curwin->w_cursor.col;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user