fix(#1514): inverted git navigation keymaps (#1515)

This commit is contained in:
Jonathan Gollnick 2022-08-19 23:37:51 -05:00 committed by GitHub
parent d9edddb849
commit 9fd7b7ae29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -154,7 +154,7 @@ local DEFAULT_KEYMAPS = {
desc = "go to next diagnostic item",
},
{
key = "[c",
key = "]c",
callback = Api.node.navigate.git.next,
desc = "go to next git item",
},
@ -164,7 +164,7 @@ local DEFAULT_KEYMAPS = {
desc = "go to prev diagnostic item",
},
{
key = "]c",
key = "[c",
callback = Api.node.navigate.git.prev,
desc = "go to prev git item",
},