From: Bram Moolenaar Date: Wed, 15 Aug 2012 11:31:00 +0000 (+0200) Subject: updated for version 7.3.630 X-Git-Tag: v7.3.630 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2dac213ac6896bffbbfdd9afbdb0ad0e8b032532;p=vim updated for version 7.3.630 Problem: "|" does not behave correctly when 'virtualedit' is set. Solution: Call validate_virtcol(). (David Bürgin) --- diff --git a/src/normal.c b/src/normal.c index f61052b10..6a4fa781c 100644 --- a/src/normal.c +++ b/src/normal.c @@ -7786,7 +7786,10 @@ n_start_visual_mode(c) * virtualedit. Recalculate curwin->w_cursor to avoid bad hilighting. */ if (c == Ctrl_V && (ve_flags & VE_BLOCK) && gchar_cursor() == TAB) + { + validate_virtcol(); coladvance(curwin->w_virtcol); + } #endif VIsual = curwin->w_cursor; diff --git a/src/version.c b/src/version.c index c35104b05..fad108155 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 630, /**/ 629, /**/