fix(neovim): Remove nvim-treesitter's ]c & [c bindings

- They conflict with default vimdiff bindings
This commit is contained in:
Pratik Tripathy
2025-10-20 17:01:18 +05:30
parent c2ddd12cf3
commit ee8ee9898d

View File

@@ -267,7 +267,6 @@ 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" },
["]o"] = { query = "@loop.*", desc = "Goto next loop start" },
},
goto_next_end = {
@@ -277,7 +276,6 @@ return {
},
goto_previous_start = {
["[f"] = { query = "@function.outer", desc = "Goto goto previous inner function start" },
-- ["[c"] = { query = "@class.outer", desc = "Previous inner class start" },
["[o"] = { query = "@loop.*", desc = "Goto previous loop start" },
},
goto_previous_end = {