diff --git a/src/ops.c b/src/ops.c index e4d26006b7..8752477e39 100644 --- a/src/ops.c +++ b/src/ops.c @@ -5702,10 +5702,10 @@ do_addsub(command, Prenum1, g_cmd) /* reset */ subtract = FALSE; negative = FALSE; - if (visual && VIsual_mode != Ctrl_V) - col = 0; - else + if (visual && VIsual_mode == Ctrl_V) col = startcol; + else + col = 0; Prenum1 += offset; curwin->w_set_curswant = TRUE; #ifdef FEAT_RIGHTLEFT diff --git a/src/version.c b/src/version.c index df00f5bcfb..016b25c1d6 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 778, /**/ 777, /**/