Skip to content

Commit a75a1b8

Browse files
committed
Fix inverted git navigation keymaps
1 parent 09a5126 commit a75a1b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/nvim-tree/keymap.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ local DEFAULT_KEYMAPS = {
154154
desc = "go to next diagnostic item",
155155
},
156156
{
157-
key = "[c",
157+
key = "]c",
158158
callback = Api.node.navigate.git.next,
159159
desc = "go to next git item",
160160
},
@@ -164,7 +164,7 @@ local DEFAULT_KEYMAPS = {
164164
desc = "go to prev diagnostic item",
165165
},
166166
{
167-
key = "]c",
167+
key = "[c",
168168
callback = Api.node.navigate.git.prev,
169169
desc = "go to prev git item",
170170
},

0 commit comments

Comments
 (0)