From 6c05614f18eb2687f6791726386652562b431ff4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Fri, 4 Jul 2025 10:48:44 +0200 Subject: [PATCH] nvim/telescope: disable unused binding --- .config/nvim/after/plugin/lsp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/after/plugin/lsp.lua b/.config/nvim/after/plugin/lsp.lua index 80b9b922..11ca0425 100644 --- a/.config/nvim/after/plugin/lsp.lua +++ b/.config/nvim/after/plugin/lsp.lua @@ -85,7 +85,7 @@ local on_attach = function(client, bufnr) map("n", "gd", vim.lsp.buf.definition, { buffer = bufnr }) -- conflicts with tabs -- map("n", "gtd", vim.lsp.buf.type_definition, { buffer = bufnr }) - map("n", "gi", vim.lsp.buf.implementation, { buffer = bufnr }) + -- map("n", "gi", vim.lsp.buf.implementation, { buffer = bufnr }) map("n", "gu", telescope.lsp_references, { buffer = bufnr }) map("n", "ca", vim.lsp.buf.code_action, { buffer = bufnr }) map("n", "cl", vim.lsp.codelens.run, { buffer = bufnr })