diff --git a/lua/telescope/builtin/__lsp.lua b/lua/telescope/builtin/__lsp.lua index 17cf430277..3604e5b6fc 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