Skip to content
Snippets Groups Projects
Commit 91b2bdb0 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.4a.022

Problem:    Using "d2g$" does not delete the last character. (ZyX)
Solution:   Set the "inclusive" flag properly.
parent ff525189
No related merge requests found
......@@ -4545,7 +4545,7 @@ nv_screengo(oap, dir, dist)
int width2; /* test width for wrapped screen line */
oap->motion_type = MCHAR;
oap->inclusive = FALSE;
oap->inclusive = (curwin->w_curswant == MAXCOL);
col_off1 = curwin_col_off();
col_off2 = col_off1 - curwin_col_off2();
......
......@@ -727,6 +727,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
22,
/**/
21,
/**/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment