Skip to content

Commit 3a9b162

Browse files
committed
fix(state): do proper redraw that works on nightly and on stable
1 parent 5d5bde9 commit 3a9b162

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/which-key/state.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ function M.step(state)
251251
0,
252252
vim.schedule_wrap(function()
253253
if vim.api.nvim__redraw then
254-
vim.api.nvim__redraw({ cursor = true, valid = true })
254+
vim.api.nvim__redraw({ cursor = true, valid = true, flush = true })
255255
else
256256
vim.cmd.redraw()
257257
end

0 commit comments

Comments
 (0)