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 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ex_getln.c') 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 { -- cgit v1.2.1