# HG changeset patch # User Christian Brabandt # Date 1472756409 -7200 # Node ID 793471c09a4b1ec7962004f926ca767f0e9564f3 # Parent b7b9bcaa1e246f773cd0cb9ed6b078e205baadcf commit https://github.com/vim/vim/commit/779f2fc3a7468e273897d2fd0672315812a2e3da Author: Bram Moolenaar Date: Thu Sep 1 20:58:24 2016 +0200 patch 7.4.2303 Problem: When using "is" the mode isn't always updated. Solution: Redraw the command line. (Christian Brabandt) diff --git a/src/search.c b/src/search.c --- a/src/search.c +++ b/src/search.c @@ -3638,6 +3638,7 @@ extend: ++curwin->w_cursor.col; VIsual = start_pos; VIsual_mode = 'v'; + redraw_cmdline = TRUE; /* show mode later */ redraw_curbuf_later(INVERTED); /* update the inversion */ } else diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2303, +/**/ 2302, /**/ 2301,