From 507941c68f54b394954b79d00ce0ee4e58371657 Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Mon, 12 May 2025 10:36:19 +0200 Subject: [PATCH] fix(treesitter): non-clashing keybind for text selection --- lua/weeheavy/plugins/treesitter.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/weeheavy/plugins/treesitter.lua b/lua/weeheavy/plugins/treesitter.lua index 0092a87..cc3fd3e 100644 --- a/lua/weeheavy/plugins/treesitter.lua +++ b/lua/weeheavy/plugins/treesitter.lua @@ -17,7 +17,7 @@ return { -- language list: https://github.com/nvim-treesitter/nvim-treesitter#supported-languages ensure_installed = { "lua", - "comment", -- used for TODO/FIXME/NOTE etc + "comment", -- used for TODO:, FIXME:, XXX: and NOTE: "vim", "vimdoc", "bash", @@ -61,8 +61,8 @@ return { incremental_selection = { enable = true, keymaps = { - init_selection = "", - node_incremental = "", + init_selection = "", + node_incremental = "", scope_incremental = false, node_decremental = "", },