From c15920711c24f3e4a330dde875d25ed0b951018c Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Thu, 27 Jul 2023 21:59:02 -0500 Subject: [PATCH] refactor(nvim): remove goto class mappings These interfered with jumpto-diff mappings --- dots/.config/nvim/lua/plugins/configs/treesitter.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/dots/.config/nvim/lua/plugins/configs/treesitter.lua b/dots/.config/nvim/lua/plugins/configs/treesitter.lua index 34142ea1..15562ff5 100755 --- a/dots/.config/nvim/lua/plugins/configs/treesitter.lua +++ b/dots/.config/nvim/lua/plugins/configs/treesitter.lua @@ -73,22 +73,18 @@ nvim_treesitter.setup({ set_jumps = true, goto_next_start = { ["]fs"] = "@function.outer", - ["]cs"] = "@class.outer", ["]bs"] = "@block.outer", }, goto_next_end = { ["]fe"] = "@function.outer", - ["]ce"] = "@class.outer", ["]be"] = "@block.outer", }, goto_previous_start = { ["[fs"] = "@function.outer", - ["[cs"] = "@class.outer", ["[bs"] = "@block.outer", }, goto_previous_end = { ["[fe"] = "@function.outer", - ["[ce"] = "@class.outer", ["[bs"] = "@block.outer", }, },