Change next/prev hunk from h to g keybind

This commit is contained in:
Martin Larsson 2024-09-15 23:36:32 +02:00
parent ce0dfec2ea
commit 3ecc70e179

View file

@ -88,10 +88,10 @@ return {
["<leader>gb"] = {
cmd = gitsigns.toggle_current_line_blame
},
["[h"] = {
["[g"] = {
cmd = function() gitsigns.nav_hunk("prev") end
},
["]h"] = {
["]g"] = {
cmd = function() gitsigns.nav_hunk("next") end
}
}