From ef8eb0897819099fb00d675afb9bffe1d008c45e Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 30 Mar 2017 22:04:55 +0200 Subject: patch 8.0.0528: highlight wrong text when 'wim' includes "longest" Problem: When 'wildmenu' is set and 'wildmode' has "longest" then the first file name is highlighted, even though the text shows the longest match. Solution: Do not highlight the first match. (LemonBoy, closes #1602) --- src/ex_getln.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ex_getln.c b/src/ex_getln.c index a3cac7262..c706476b8 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -4147,7 +4147,7 @@ showmatches(expand_T *xp, int wildmenu UNUSED) got_int = FALSE; /* only int. the completion, not the cmd line */ #ifdef FEAT_WILDMENU else if (wildmenu) - win_redr_status_matches(xp, num_files, files_found, 0, showtail); + win_redr_status_matches(xp, num_files, files_found, -1, showtail); #endif else { diff --git a/src/version.c b/src/version.c index 71b04106e..fe972df1a 100644 --- 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 */ +/**/ + 528, /**/ 527, /**/ -- cgit v1.2.1