From 233cd6ad0d0a23660a52db599302f65b68384163 Mon Sep 17 00:00:00 2001 From: Azad <49314270+Akmadan23@users.noreply.github.com> Date: Wed, 24 May 2023 10:48:24 +0200 Subject: [PATCH] fix(lsp.definitions): compare file uri with `targetUri` (#2514) --- lua/telescope/builtin/__lsp.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/telescope/builtin/__lsp.lua b/lua/telescope/builtin/__lsp.lua index 17cf430..3604e5b 100644 --- a/lua/telescope/builtin/__lsp.lua +++ b/lua/telescope/builtin/__lsp.lua @@ -186,7 +186,8 @@ local function list_or_jump(action, title, opts) if #flattened_results == 0 then return elseif #flattened_results == 1 and opts.jump_type ~= "never" then - if params.textDocument.uri ~= flattened_results[1].uri then + local uri = params.textDocument.uri + if uri ~= flattened_results[1].uri and uri ~= flattened_results[1].targetUri then if opts.jump_type == "tab" then vim.cmd "tabedit" elseif opts.jump_type == "split" then