From baa29e96b98d1c7fb91ca1c613bc401d502c8929 Mon Sep 17 00:00:00 2001 From: Alexandre Teoi Date: Sun, 7 Sep 2025 13:15:09 -0300 Subject: fix(zk): zk.list returns paths relative to the root directory #4063 --- lsp/zk.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lsp') diff --git a/lsp/zk.lua b/lsp/zk.lua index 7a406421..3faa3ba3 100644 --- a/lsp/zk.lua +++ b/lsp/zk.lua @@ -30,7 +30,7 @@ local function zk_list(client, bufnr, opts, action) end, }, function(item) if item ~= nil then - action(item.path, item.title) + action(vim.fs.joinpath(client.root_dir, item.path), item.title) end end) end) -- cgit v1.2.3-70-g09d2