refactor(nvim): remove goto class mappings

These interfered with jumpto-diff mappings
This commit is contained in:
Price Hiller 2023-07-27 21:59:02 -05:00
parent 7115f05213
commit c15920711c
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -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",
},
},