diff options
Diffstat (limited to 'lua/user')
| -rw-r--r-- | lua/user/whichkey.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lua/user/whichkey.lua b/lua/user/whichkey.lua index 994435f..0056e5a 100644 --- a/lua/user/whichkey.lua +++ b/lua/user/whichkey.lua @@ -79,6 +79,7 @@ local opts = { } local mappings = { + ["/"] = { "<cmd>lua require(\"Comment.api\").toggle_current_linewise()<CR>", "Comment" }, ["a"] = { "<cmd>Alpha<cr>", "Alpha" }, ["b"] = { "<cmd>lua require('telescope.builtin').buffers(require('telescope.themes').get_dropdown{previewer = false})<cr>", @@ -183,5 +184,18 @@ local mappings = { }, } +local vopts = { + mode = "v", -- VISUAL mode + prefix = "<leader>", + buffer = nil, -- Global mappings. Specify a buffer number for buffer local mappings + silent = true, -- use `silent` when creating keymaps + noremap = true, -- use `noremap` when creating keymaps + nowait = true, -- use `nowait` when creating keymaps +} +local vmappings = { + ["/"] = { "<ESC><CMD>lua require(\"Comment.api\").toggle_linewise_op(vim.fn.visualmode())<CR>", "Comment" }, +} + which_key.setup(setup) which_key.register(mappings, opts) +which_key.register(vmappings, vopts) |
