fix(lsp): add missing offset encoding (#1718)

This commit is contained in:
Chinmay Dalal
2022-01-28 20:45:21 +05:30
committed by GitHub
parent 21cb64aa1a
commit 2553236fe1

View File

@@ -65,6 +65,8 @@ local function list_or_jump(action, title, opts)
vim.list_extend(flattened_results, result) vim.list_extend(flattened_results, result)
end end
local offset_encoding = vim.lsp.get_client_by_id(ctx.client_id).offset_encoding
if #flattened_results == 0 then if #flattened_results == 0 then
return return
elseif #flattened_results == 1 and opts.jump_type ~= "never" then elseif #flattened_results == 1 and opts.jump_type ~= "never" then
@@ -75,9 +77,9 @@ local function list_or_jump(action, title, opts)
elseif opts.jump_type == "vsplit" then elseif opts.jump_type == "vsplit" then
vim.cmd "vnew" vim.cmd "vnew"
end end
vim.lsp.util.jump_to_location(flattened_results[1], vim.lsp.get_client_by_id(ctx.client_id).offset_encoding) vim.lsp.util.jump_to_location(flattened_results[1], offset_encoding)
else else
local locations = vim.lsp.util.locations_to_items(flattened_results) local locations = vim.lsp.util.locations_to_items(flattened_results, offset_encoding)
pickers.new(opts, { pickers.new(opts, {
prompt_title = title, prompt_title = title,
finder = finders.new_table { finder = finders.new_table {