forked from aniani/vim
updated for version 7.3.482
Problem: With 'cursorbind' set moving up/down does not always keep the same column. Solution: Set curswant appropriately. (Gary Johnson)
This commit is contained in:
parent
61d281a4c0
commit
524780d69f
@ -2847,6 +2847,8 @@ do_check_cursorbind()
|
|||||||
# ifdef FEAT_VIRTUALEDIT
|
# ifdef FEAT_VIRTUALEDIT
|
||||||
colnr_T coladd = curwin->w_cursor.coladd;
|
colnr_T coladd = curwin->w_cursor.coladd;
|
||||||
# endif
|
# endif
|
||||||
|
colnr_T curswant = curwin->w_curswant;
|
||||||
|
int set_curswant = curwin->w_set_curswant;
|
||||||
win_T *old_curwin = curwin;
|
win_T *old_curwin = curwin;
|
||||||
buf_T *old_curbuf = curbuf;
|
buf_T *old_curbuf = curbuf;
|
||||||
int restart_edit_save;
|
int restart_edit_save;
|
||||||
@ -2881,6 +2883,8 @@ do_check_cursorbind()
|
|||||||
# ifdef FEAT_VIRTUALEDIT
|
# ifdef FEAT_VIRTUALEDIT
|
||||||
curwin->w_cursor.coladd = coladd;
|
curwin->w_cursor.coladd = coladd;
|
||||||
# endif
|
# endif
|
||||||
|
curwin->w_curswant = curswant;
|
||||||
|
curwin->w_set_curswant = set_curswant;
|
||||||
|
|
||||||
/* Make sure the cursor is in a valid position. Temporarily set
|
/* Make sure the cursor is in a valid position. Temporarily set
|
||||||
* "restart_edit" to allow the cursor to be beyond the EOL. */
|
* "restart_edit" to allow the cursor to be beyond the EOL. */
|
||||||
|
@ -714,6 +714,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
482,
|
||||||
/**/
|
/**/
|
||||||
481,
|
481,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user