diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-09-29 17:54:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-29 17:54:05 +0200 |
commit | dd872cbb441a24cd32db56a5c285fe0f102d8ef6 (patch) | |
tree | db90037e73c18a28871edc5a2d5972e4b78956bb /src/nvim/normal.c | |
parent | 9ed830a3ca5847a9152b91fca5e1eaf712bed55b (diff) | |
parent | e33269578b5bea2528cc48afc5b009eb8d4ad1d6 (diff) | |
download | rneovim-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/normal.c')
-rw-r--r-- | src/nvim/normal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index b6fe24a961..834204e5e1 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -2087,7 +2087,7 @@ static void display_showcmd(void) // clear the rest of an old message by outputting up to SHOWCMD_COLS spaces grid_line_puts(sc_col + len, (char *)" " + len, -1, HL_ATTR(HLF_MSG)); - grid_line_flush(false); + grid_line_flush(); } /// When "check" is false, prepare for commands that scroll the window. |