From 1c30f6c3a72e9571e363bfb8bbf19f51301be439 Mon Sep 17 00:00:00 2001 From: 409 <409dev@protonmail.com> Date: Wed, 19 Feb 2025 03:09:07 +0100 Subject: [PATCH] feat(keybinds)!: `gd` uses `nowait` --- lua/409/plugins/lsp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/409/plugins/lsp.lua b/lua/409/plugins/lsp.lua index f9660f7..7ac90c6 100644 --- a/lua/409/plugins/lsp.lua +++ b/lua/409/plugins/lsp.lua @@ -40,7 +40,7 @@ return { vim.lsp.util.jump_to_location(list.items[1].user_data, "utf-8", true) end, }) - end, lsp_opts) + end, { buffer = bufnr, remap = false, nowait = true }) vim.keymap.set("n", "gi", function() vim.lsp.buf.implementation() end, lsp_opts)