Skip to content

Commit c890020

Browse files
committed
fix(config): load early when executing WhichKey command. Fixes #912
1 parent 4ab3bbe commit c890020

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lua/which-key/config.lua

+4-3
Original file line numberDiff line numberDiff line change
@@ -295,15 +295,16 @@ function M.setup(opts)
295295

296296
M.loaded = true
297297
end
298-
load = vim.schedule_wrap(load)
298+
local _load = vim.schedule_wrap(load)
299299

300300
if vim.v.vim_did_enter == 1 then
301-
load()
301+
_load()
302302
else
303-
vim.api.nvim_create_autocmd("VimEnter", { once = true, callback = load })
303+
vim.api.nvim_create_autocmd("VimEnter", { once = true, callback = _load })
304304
end
305305

306306
vim.api.nvim_create_user_command("WhichKey", function(cmd)
307+
load()
307308
local mode, keys = cmd.args:match("^([nixsotc]?)%s*(.*)$")
308309
if not mode then
309310
return require("which-key.util").error("Usage: WhichKey [mode] [keys]")

0 commit comments

Comments
 (0)