You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
K('n', cfg.extra.eol, api.locked('insert.linewise.eol'), { desc='Comment insert end of line' })
294
-
end
295
-
296
-
ifcfg.mappings.extendedthen
297
-
vim.notify_once(
298
-
[=[[Comment] `extended` mappings are deprecated and will be removed on 07 Nov 2022. Please refer to https://github.com/numToStr/Comment.nvim/wiki/Extended-Keybindings on how to define them manually.]=],
299
-
vim.log.levels.WARN
300
-
)
301
-
302
-
K('n', 'g>', api.call('comment.linewise', 'g@'), { expr=true, desc='Comment region linewise' })
303
-
K('n', 'g>c', api.call('comment.linewise.current', 'g@$'), { expr=true, desc='Comment current line' })
304
-
K('n', 'g>b', api.call('comment.blockwise.current', 'g@$'), { expr=true, desc='Comment current block' })
305
-
306
-
K('n', 'g<', api.call('uncomment.linewise', 'g@'), { expr=true, desc='Uncomment region linewise' })
0 commit comments