forked from aniani/vim
updated for version 7.3.228
Problem: "2gj" does not always move to the correct position. Solution: Get length of line after moving to a next line. (James Vega)
This commit is contained in:
parent
54b08a5e78
commit
914968e66d
@ -4533,6 +4533,7 @@ nv_screengo(oap, dir, dist)
|
||||
}
|
||||
curwin->w_cursor.lnum++;
|
||||
curwin->w_curswant %= width2;
|
||||
linelen = linetabsize(ml_get_curline());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -709,6 +709,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
228,
|
||||
/**/
|
||||
227,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user