12 lines
349 B
Lua
12 lines
349 B
Lua
local M = { 'tpope/vim-commentary' }
|
|
|
|
M.cmd = 'Commentary'
|
|
|
|
M.keys = {
|
|
{ 'gc', '<Plug>Commentary', mode = { 'n', 'x', 'o' }, desc = 'Comment in/out' },
|
|
{ 'gcc', '<Plug>CommentaryLine', desc = 'Comment in/out line' },
|
|
{ 'gcu', '<Plug>Commentary<Plug>Commentary', desc = 'Undo comment in/out' },
|
|
}
|
|
|
|
return M
|
|
|