nvim-config-kickstart/after/plugin/mappings.lua

15 lines
496 B
Lua
Raw Normal View History

--[[
-- Contains fixes for mappings created by plugins
2023-12-24 17:03:11 +00:00
-- Useful because of bépo
--]]
-- Comments.nvim adds `gbc` command, which conflicts with `gb/gé` to move
-- between tabs
if vim.fn.maparg("gbc") ~= "" then
vim.keymap.del("n", "gbc")
vim.keymap.set('n', 'gBc', function()
2023-12-25 13:29:10 +00:00
return vim.api.nvim_get_vvar('count') == 0 and '<Plug>(comment_toggle_blockwise_current)'
or '<Plug>(comment_toggle_blockwise_count)'
end, { expr = true, desc = 'Comment toggle current block' })
end