From 8a89b765d494df7a100b98b2d6c1aaaf2cda5a6e Mon Sep 17 00:00:00 2001 From: victorkamoto Date: Sun, 14 Apr 2024 05:09:04 +0300 Subject: [PATCH] fix(keymaps): seems to only work with key strings --- lua/lazyvim/plugins/treesitter.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/lazyvim/plugins/treesitter.lua b/lua/lazyvim/plugins/treesitter.lua index 4be51c06..a53da09e 100644 --- a/lua/lazyvim/plugins/treesitter.lua +++ b/lua/lazyvim/plugins/treesitter.lua @@ -114,8 +114,8 @@ return { list_definitions = false, list_definitions_toc = false, - goto_next_usage = { ["]]"] = "Next reference" }, - goto_previous_usage = { ["[["] = "Previous reference" }, + goto_next_usage = "]]", + goto_previous_usage = "[[", }, }, },