fix!(mappings): remove some leftover bépo mappings

BREAKING CHANGE: gB comes back to be gb
This commit is contained in:
Fabrice Mouhartem 2024-11-06 09:30:55 +01:00
parent 6e9919da69
commit 89bb298289
Signed by: fmouhart
GPG Key ID: 2C5033B228CFE4E7

View File

@ -1,14 +1,15 @@
--[[
-- Contains fixes for mappings created by plugins
-- Useful because of bépo
-- NOTE: not in use right now
--]]
-- Comments.nvim adds `gbc` command, which conflicts with `gb/gé` to move
-- between tabs
if vim.fn.maparg("gbc") ~= "" then
--[[ if vim.fn.maparg("gbc") ~= "" then
vim.keymap.del("n", "gbc")
vim.keymap.set('n', 'gBc', function()
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
end ]]