From 57402a41ac6f983640c41af43ce0c37929e61c43 Mon Sep 17 00:00:00 2001 From: bhagwan Date: Sun, 12 Jun 2022 17:22:15 -0700 Subject: [PATCH] fix(jump_to_single_result_action): when 'forced_uri' (closes #448) --- lua/fzf-lua/providers/lsp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/fzf-lua/providers/lsp.lua b/lua/fzf-lua/providers/lsp.lua index cc1af57..ba30ee4 100644 --- a/lua/fzf-lua/providers/lsp.lua +++ b/lua/fzf-lua/providers/lsp.lua @@ -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)