From 9fd7b7ae2920cc349644b5d45785e2a655ffdfe9 Mon Sep 17 00:00:00 2001 From: Jonathan Gollnick <32113038+cptchuckles@users.noreply.github.com> Date: Fri, 19 Aug 2022 23:37:51 -0500 Subject: [PATCH] fix(#1514): inverted git navigation keymaps (#1515) --- lua/nvim-tree/keymap.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/nvim-tree/keymap.lua b/lua/nvim-tree/keymap.lua index 74b96d1d..17e180bb 100644 --- a/lua/nvim-tree/keymap.lua +++ b/lua/nvim-tree/keymap.lua @@ -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", },