diff src/normal.c @ 5192:c28202427d71 v7.4a.022

updated for version 7.4a.022 Problem: Using "d2g$" does not delete the last character. (ZyX) Solution: Set the "inclusive" flag properly.
author Bram Moolenaar <bram@vim.org>
date Sun, 14 Jul 2013 13:32:15 +0200
parents c624928fbc49
children 22dfcd1494e4
line wrap: on
line diff
--- a/src/normal.c
+++ b/src/normal.c
@@ -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();