From 2a3c34d57d9a405f40c37bf3662d5ba063949acb Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 3 Apr 2026 01:51:44 +0300 Subject: [PATCH] . --- .config/nvim/lua/keymaps.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/nvim/lua/keymaps.lua b/.config/nvim/lua/keymaps.lua index 1b84fb9..ca9fa0e 100644 --- a/.config/nvim/lua/keymaps.lua +++ b/.config/nvim/lua/keymaps.lua @@ -102,7 +102,7 @@ map("v", "", ":execute \"'<,'>move '<-\" . (v:count1 + 1)gv=gv", { map("v", "<", "", ">gv") -map({ "n", "o", "v" }, "", function() +map({ "n", "o", "v" }, "", function() if vim.treesitter.get_parser(nil, nil, { error = false }) then require("vim.treesitter._select").select_parent(vim.v.count1) else @@ -110,7 +110,7 @@ map({ "n", "o", "v" }, "", function() end end, { desc = "Select parent treesitter node or outer incremental lsp selections" }) -map({ "n", "o", "v" }, "", function() +map({ "n", "o", "v" }, "", function() if vim.treesitter.get_parser(nil, nil, { error = false }) then require("vim.treesitter._select").select_child(vim.v.count1) else