feat(keys)!: remove conflict between gitsigns and mini.bracketed

This commit is contained in:
Youwen Wu 2024-09-18 11:36:02 -07:00
parent 570fddee2d
commit 5336f0bcc6
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -369,7 +369,7 @@
__raw = ''
function()
if vim.wo.diff then
vim.cmd.normal({']c', bang = true})
vim.cmd.normal({']g', bang = true})
else
require('gitsigns').nav_hunk('next')
end
@ -389,7 +389,7 @@
__raw = ''
function()
if vim.wo.diff then
vim.cmd.normal({'[c', bang = true})
vim.cmd.normal({'[g', bang = true})
else
require('gitsigns').nav_hunk('prev')
end