summaryrefslogtreecommitdiff
path: root/lua/lvim/core/which-key.lua
diff options
context:
space:
mode:
authorLostNeophyte <[email protected]>2023-02-07 18:57:10 +0100
committerLostNeophyte <[email protected]>2023-02-07 18:57:10 +0100
commit620e51898275764502853f3908707ef71ce42313 (patch)
tree8705fe27dc7690b041d061b80fd1c4fd42387882 /lua/lvim/core/which-key.lua
parent24d8780d7392f444f852e646eb8e438b4c629850 (diff)
refactor(builtins): centralize setting up builtins
Diffstat (limited to 'lua/lvim/core/which-key.lua')
-rw-r--r--lua/lvim/core/which-key.lua5
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