From ee8ee9898d16acf6e0d748936693c4cdec214b6d Mon Sep 17 00:00:00 2001 From: Pratik Tripathy Date: Mon, 20 Oct 2025 17:01:18 +0530 Subject: [PATCH] fix(neovim): Remove nvim-treesitter's `]c` & `[c` bindings - They conflict with default vimdiff bindings --- common/.config/nvim/lua/plugins/code-generic.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/common/.config/nvim/lua/plugins/code-generic.lua b/common/.config/nvim/lua/plugins/code-generic.lua index 7ec2372..440dd8d 100644 --- a/common/.config/nvim/lua/plugins/code-generic.lua +++ b/common/.config/nvim/lua/plugins/code-generic.lua @@ -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 = {