diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-03-30 22:04:55 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-03-30 22:04:55 +0200 |
commit | ef8eb0897819099fb00d675afb9bffe1d008c45e (patch) | |
tree | 9f2f41fabdd7ac4199fc2330dc6d77dd1726c084 | |
parent | ce5c2742012e4793cb4cf82791e849f817fecd95 (diff) | |
download | vim-git-ef8eb0897819099fb00d675afb9bffe1d008c45e.tar.gz |
patch 8.0.0528: highlight wrong text when 'wim' includes "longest"v8.0.0528
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)
-rw-r--r-- | src/ex_getln.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
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 @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 528, +/**/ 527, /**/ 526, |