Skip to content

Commit

Permalink
fix: set check debounce to 50
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Jul 12, 2024
1 parent a2d265c commit 754bcc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/which-key/buf.lua
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ function M.clear(opts)
M.check()
end

M.check = Util.debounce(100, function()
M.check = Util.debounce(50, function()
M.get()
end)

Expand Down

0 comments on commit 754bcc7

Please sign in to comment.