fix: make key mapping's description to lazy load Comment.nvim coherent with the defaults (#2148)

This commit is contained in:
georgejean 2023-06-24 03:19:07 +02:00 committed by GitHub
parent 4aa283119a
commit 286c951d7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 4 deletions

View File

@ -201,10 +201,12 @@ local default_plugins = {
{
"numToStr/Comment.nvim",
keys = {
{ "gcc", mode = "n", desc = "Toggles comment on current line" },
{ "gc", mode = { "n", "o", "x" }, desc = "Toggles comment on current line's region" },
{ "gbc", mode = "n", desc = "Toggles blockwise comment on current line" },
{ "gb", mode = { "n", "o", "x" }, desc = "Toggles blockwise comment on region" },
{ "gcc", mode = "n", desc = "Comment toggle current line" },
{ "gc", mode = { "n", "o" }, desc = "Comment toggle linewise" },
{ "gc", mode = "x", desc = "Comment toggle linewise (visual)" },
{ "gbc", mode = "n", desc = "Comment toggle current block" },
{ "gb", mode = { "n", "o" }, desc = "Comment toggle blockwise" },
{ "gb", mode = "x", desc = "Comment toggle blockwise (visual)" },
},
init = function()
require("core.utils").load_mappings "comment"