diff options
Diffstat (limited to 'lua/lvim/core/which-key.lua')
-rw-r--r-- | lua/lvim/core/which-key.lua | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lua/lvim/core/which-key.lua b/lua/lvim/core/which-key.lua index ea79f03b..4cb956eb 100644 --- a/lua/lvim/core/which-key.lua +++ b/lua/lvim/core/which-key.lua @@ -3,7 +3,6 @@ M.config = function() lvim.builtin.which_key = { ---@usage disable which-key completely [not recommended] active = true, - on_config_done = nil, setup = { plugins = { marks = false, -- shows a list of your marks on ' and ` @@ -313,10 +312,6 @@ M.setup = function() which_key.register(mappings, opts) which_key.register(vmappings, vopts) - - if lvim.builtin.which_key.on_config_done then - lvim.builtin.which_key.on_config_done(which_key) - end end return M |