From d9df22c23beeb066d4634ea816a1c023ecc1acde Mon Sep 17 00:00:00 2001 From: pr0c3550r Date: Wed, 2 Aug 2023 19:33:43 +0200 Subject: [PATCH] Nvim: fixed keymaps of Trouble.nvim --- nvim/.config/nvim/lua/plugin/trouble.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/.config/nvim/lua/plugin/trouble.lua b/nvim/.config/nvim/lua/plugin/trouble.lua index cae7b67..25ef1bd 100644 --- a/nvim/.config/nvim/lua/plugin/trouble.lua +++ b/nvim/.config/nvim/lua/plugin/trouble.lua @@ -8,6 +8,6 @@ return { vim.keymap.set("n", "xd", function() require("trouble").toggle("document_diagnostics") end) vim.keymap.set("n", "xq", function() require("trouble").toggle("quickfix") end) vim.keymap.set("n", "xl", function() require("trouble").toggle("loclist") end) - vim.keymap.set("n", "gR", function() require("trouble").open("lsp_references") end) + vim.keymap.set("n", "gr", function() require("trouble").open("lsp_references") end) end }