fix(neovim): Unmap ]c, [c & show modified directories in file tree

- `]c` & `[c` are mapped by default to diffview change traversal
This commit is contained in:
Pratik Tripathy
2025-10-13 19:30:27 +05:30
parent 4defc9e32e
commit f3814850ba
2 changed files with 2 additions and 3 deletions

View File

@@ -267,7 +267,7 @@ return {
enable = true,
goto_next_start = {
["]f"] = { query = "@function.outer", desc = "Goto next inner function start" },
["]c"] = { query = "@class.outer", desc = "Goto next inner class start" },
-- ["]c"] = { query = "@class.outer", desc = "Goto next inner class start" },
["]o"] = { query = "@loop.*", desc = "Goto next loop start" },
},
goto_next_end = {
@@ -277,7 +277,7 @@ return {
},
goto_previous_start = {
["[f"] = { query = "@function.outer", desc = "Goto goto previous inner function start" },
["[c"] = { query = "@class.outer", desc = "Previous inner class start" },
-- ["[c"] = { query = "@class.outer", desc = "Previous inner class start" },
["[o"] = { query = "@loop.*", desc = "Goto previous loop start" },
},
goto_previous_end = {