feat: remove comments
This commit is contained in:
parent
1edafd6d41
commit
9830c20eb6
|
@ -1,43 +1,10 @@
|
||||||
require("Comment").setup({
|
require('Comment').setup({
|
||||||
---Add a space b/w comment and the line
|
|
||||||
padding = true,
|
padding = true,
|
||||||
---Whether the cursor should stay at its position
|
|
||||||
sticky = true,
|
sticky = true,
|
||||||
---Lines to be ignored while (un)comment
|
|
||||||
ignore = nil,
|
|
||||||
---LHS of toggle mappings in NORMAL mode
|
|
||||||
toggler = {
|
toggler = {
|
||||||
---Line-comment toggle keymap
|
|
||||||
line = '<leader>/',
|
line = '<leader>/',
|
||||||
---Block-comment toggle keymap
|
|
||||||
block = '<leader>/',
|
|
||||||
},
|
},
|
||||||
---LHS of operator-pending mappings in NORMAL and VISUAL mode
|
|
||||||
opleader = {
|
opleader = {
|
||||||
---Line-comment keymap
|
|
||||||
line = '<leader>/',
|
line = '<leader>/',
|
||||||
---Block-comment keymap
|
|
||||||
block = '<leader>/',
|
|
||||||
},
|
},
|
||||||
---LHS of extra mappings
|
|
||||||
extra = {
|
|
||||||
---Add comment on the line above
|
|
||||||
above = 'gcO',
|
|
||||||
---Add comment on the line below
|
|
||||||
below = 'gco',
|
|
||||||
---Add comment at the end of line
|
|
||||||
eol = 'gcA',
|
|
||||||
},
|
|
||||||
---Enable keybindings
|
|
||||||
---NOTE: If given `false` then the plugin won't create any mappings
|
|
||||||
mappings = {
|
|
||||||
---Operator-pending mapping; `gcc` `gbc` `gc[count]{motion}` `gb[count]{motion}`
|
|
||||||
basic = true,
|
|
||||||
---Extra mapping; `gco`, `gcO`, `gcA`
|
|
||||||
extra = true,
|
|
||||||
},
|
|
||||||
---Function to call before (un)comment
|
|
||||||
pre_hook = nil,
|
|
||||||
---Function to call after (un)comment
|
|
||||||
post_hook = nil,
|
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue