diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-07-01 19:50:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-01 19:50:17 +0200 |
commit | 6d2b11d76ccaf6fd28002e33b9dd72a9cb80d646 (patch) | |
tree | fa1a20a41526426dca607171a531f24f29edda59 /src/nvim/screen.c | |
parent | 740fb337dd8c63b63db186057fca2994b92ddbf5 (diff) | |
parent | b98d1cf68bd1d78d8170a8d994ba7dae5540962a (diff) | |
download | rneovim-6d2b11d76ccaf6fd28002e33b9dd72a9cb80d646.tar.gz rneovim-6d2b11d76ccaf6fd28002e33b9dd72a9cb80d646.tar.bz2 rneovim-6d2b11d76ccaf6fd28002e33b9dd72a9cb80d646.zip |
Merge pull request #10387 from bfredl/wildpos
cmdline: correct the column position of wildoptions=pum popupmenu
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 19dff0a0f0..4ea196fa44 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -4657,7 +4657,7 @@ win_redr_status_matches ( int showtail ) { -#define L_MATCH(m) (showtail ? sm_gettail(matches[m]) : matches[m]) +#define L_MATCH(m) (showtail ? sm_gettail(matches[m], false) : matches[m]) int row; char_u *buf; int len; |