diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-09-16 19:21:32 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2022-09-22 10:36:23 +0200 |
commit | 00cfc1dcebd1c81dd0d8c111740782e86cf2e385 (patch) | |
tree | 4234a5fc1a044e7f9dd821e1db4f5e6ef62d86e4 /src/nvim/lua/executor.c | |
parent | 8d13b08a03c31cdb269b7d09c166e0b447f2a303 (diff) | |
download | rneovim-00cfc1dcebd1c81dd0d8c111740782e86cf2e385.tar.gz rneovim-00cfc1dcebd1c81dd0d8c111740782e86cf2e385.tar.bz2 rneovim-00cfc1dcebd1c81dd0d8c111740782e86cf2e385.zip |
fix(redraw): avoid unnecessary redraws and glitches with floats+messages
fixes #20106
fixes #20229
Diffstat (limited to 'src/nvim/lua/executor.c')
-rw-r--r-- | src/nvim/lua/executor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/lua/executor.c b/src/nvim/lua/executor.c index 09f8c688d8..6063414a02 100644 --- a/src/nvim/lua/executor.c +++ b/src/nvim/lua/executor.c @@ -1658,7 +1658,7 @@ void ex_luado(exarg_T *const eap) } lua_pop(lstate, 1); check_cursor(); - update_screen(UPD_NOT_VALID); + redraw_curbuf_later(UPD_NOT_VALID); } /// Run lua file |