fix comment.nvim visual commenting not working (#1081)

This commit is contained in:
siduck 2022-05-15 08:12:09 +05:30
parent 0e8c73527c
commit 359a286aea
1 changed files with 8 additions and 2 deletions

View File

@ -80,12 +80,18 @@ M.comment = {
-- toggle comment in both modes
n = {
["<leader>/"] = { "<cmd> lua require('Comment.api').toggle_current_linewise()<CR>", "蘒 toggle comment" },
["<leader>/"] = {
function()
require("Comment.api").toggle_current_linewise()
end,
"蘒 toggle comment",
},
},
v = {
["<leader>/"] = {
"<cmd> lua require('Comment.api').toggle_current_linewise_op(vim.fn.visualmode())<CR>",
"<ESC><cmd>lua require('Comment.api').toggle_linewise_op(vim.fn.visualmode())<CR>",
"蘒 toggle comment",
},
},