From e400c24bd4d1663044ba23c42de4c9934c52fcb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Wed, 8 Oct 2025 00:46:07 +0200 Subject: [PATCH] fix: remap lsp definitions to same keybind in after/lsp/lua_ls --- after/lsp/lua_ls.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/after/lsp/lua_ls.lua b/after/lsp/lua_ls.lua index 26bb69d..aa8b43a 100644 --- a/after/lsp/lua_ls.lua +++ b/after/lsp/lua_ls.lua @@ -41,7 +41,7 @@ return { -- Override global "Go to source" mapping with dedicated buffer-local local opts = { buffer = buf_id, desc = "Lua source definition" } - vim.keymap.set("n", "ls", luals_unique_definition, opts) + vim.keymap.set("n", "ld", luals_unique_definition, opts) end, settings = { Lua = {