aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/cmdexpand.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2023-09-29 17:54:05 +0200
committerGitHub <noreply@github.com>2023-09-29 17:54:05 +0200
commitdd872cbb441a24cd32db56a5c285fe0f102d8ef6 (patch)
treedb90037e73c18a28871edc5a2d5972e4b78956bb /src/nvim/cmdexpand.c
parent9ed830a3ca5847a9152b91fca5e1eaf712bed55b (diff)
parente33269578b5bea2528cc48afc5b009eb8d4ad1d6 (diff)
downloadrneovim-dd872cbb441a24cd32db56a5c285fe0f102d8ef6.tar.gz
rneovim-dd872cbb441a24cd32db56a5c285fe0f102d8ef6.tar.bz2
rneovim-dd872cbb441a24cd32db56a5c285fe0f102d8ef6.zip
Merge pull request #25395 from bfredl/line_buf2
refactor(grid): unify the two put-text-on-the-screen code paths
Diffstat (limited to 'src/nvim/cmdexpand.c')
-rw-r--r--src/nvim/cmdexpand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/cmdexpand.c b/src/nvim/cmdexpand.c
index 290cc336b8..e5a97e28bb 100644
--- a/src/nvim/cmdexpand.c
+++ b/src/nvim/cmdexpand.c
@@ -608,7 +608,7 @@ static void redraw_wildmenu(expand_T *xp, int num_matches, char **matches, int m
grid_line_fill(clen, Columns, fillchar, attr);
- grid_line_flush(false);
+ grid_line_flush();
}
win_redraw_last_status(topframe);