home: vim: git: fix deprecated functions
All checks were successful
ci/woodpecker/push/check Pipeline was successful

This commit is contained in:
Bruno BELANYI 2024-07-25 09:39:38 +00:00
parent 997f208d30
commit 442eef0482

View file

@ -54,8 +54,8 @@ local keys = {
s = { gitsigns.stage_hunk, "Stage hunk" }, s = { gitsigns.stage_hunk, "Stage hunk" },
S = { gitsigns.stage_buffer, "Stage buffer" }, S = { gitsigns.stage_buffer, "Stage buffer" },
u = { gitsigns.undo_stage_hunk, "Undo stage hunk" }, u = { gitsigns.undo_stage_hunk, "Undo stage hunk" },
["["] = { gitsigns.prev_hunk, "Previous hunk" }, ["["] = { utils.partial(gitsigns.nav_hunk, "prev"), "Previous hunk" },
["]"] = { gitsigns.next_hunk, "Next hunk" }, ["]"] = { utils.partial(gitsigns.nav_hunk, "next"), "Next hunk" },
}, },
} }