# HG changeset patch # User Christian Brabandt # Date 1490904904 -7200 # Node ID 0b4adcfb7b25c039a384a6de1f3d9b58486ca979 # Parent 35080e2e10410848aea49be22fc1b51759330084 patch 8.0.0528: highlight wrong text when 'wim' includes "longest" commit https://github.com/vim/vim/commit/ef8eb0897819099fb00d675afb9bffe1d008c45e Author: Bram Moolenaar Date: Thu Mar 30 22:04:55 2017 +0200 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) diff --git a/src/ex_getln.c b/src/ex_getln.c --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -4147,7 +4147,7 @@ showmatches(expand_T *xp, int wildmenu U 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 --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 528, +/**/ 527, /**/ 526,