fix(jump_to_single_result_action): when 'forced_uri' (closes #448)

main
bhagwan 2 years ago
parent 2d2ee02d17
commit 57402a41ac

@ -8,7 +8,7 @@ local M = {}
local function location_to_entry(location, enc)
local item = vim.lsp.util.locations_to_items({ location }, enc)[1]
return ('%s:%d:%d'):format(item.filename, item.lnum, item.col)
return ('%s:%d:%d:'):format(item.filename, item.lnum, item.col)
end
local jump_to_location = function(opts, result, enc)

Loading…
Cancel
Save