diff options
Diffstat (limited to 'lua/user/whichkey.lua')
| -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 f5520b1..35da924 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>", @@ -185,3 +186,16 @@ local mappings = { which_key.setup(setup) which_key.register(mappings, opts) +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.register(vmappings, vopts) |
