Skip to content

Commit 3974c2d

Browse files
committed
fix(state): use redraw flush to prevent issues with selecting visual line etc. Fixes #898
1 parent b9684c6 commit 3974c2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/which-key/state.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -247,11 +247,11 @@ end
247247
---@return wk.Node? node, boolean? exit
248248
function M.step(state)
249249
M.redraw_timer:start(
250-
200,
250+
50,
251251
0,
252252
vim.schedule_wrap(function()
253253
if vim.api.nvim__redraw then
254-
vim.api.nvim__redraw({ cursor = true, flush = true })
254+
vim.api.nvim__redraw({ cursor = true, valid = true })
255255
else
256256
vim.cmd.redraw()
257257
end

0 commit comments

Comments
 (0)