diff options
Diffstat (limited to 'lua')
-rw-r--r-- | lua/mngr/menu.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/mngr/menu.lua b/lua/mngr/menu.lua index 9b68236..8c492ca 100644 --- a/lua/mngr/menu.lua +++ b/lua/mngr/menu.lua @@ -14,6 +14,7 @@ local function genmenu() add('edit config', nil) add('update plugins', 'dep') add('update config', nil) + add('show keybinds', 'telescope') return list end @@ -34,6 +35,9 @@ local function configmenu() if package.loaded['mason'] then require('mason.api.command').MasonUpdate() end + if choice == 'show keybinds' then + require('telescope.builtin').keymaps() + end end end) end |