diff options
author | LostNeophyte <[email protected]> | 2023-02-08 08:11:43 +0100 |
---|---|---|
committer | LostNeophyte <[email protected]> | 2023-02-08 08:11:43 +0100 |
commit | 19936f578ae1a2d4f4af812a41475a49c5862349 (patch) | |
tree | 42734581568af1332a84bd7f4faf87a2f132a3bc /lua/lvim/core/which-key.lua | |
parent | 620e51898275764502853f3908707ef71ce42313 (diff) |
fix: pass plugin module to on_config_done
Diffstat (limited to 'lua/lvim/core/which-key.lua')
-rw-r--r-- | lua/lvim/core/which-key.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/lvim/core/which-key.lua b/lua/lvim/core/which-key.lua index 4cb956eb..cdfc91e4 100644 --- a/lua/lvim/core/which-key.lua +++ b/lua/lvim/core/which-key.lua @@ -312,6 +312,8 @@ M.setup = function() which_key.register(mappings, opts) which_key.register(vmappings, vopts) + + return which_key end return M |