feat: expand path_display function return type (#3074)

* feat: support path_style in path_display option

* docs: document second value

* tests: add test

* tests: handle function in assert_path

* docs: more explanation

Co-authored-by: James Trew <66286082+jamestrew@users.noreply.github.com>

---------

Co-authored-by: James Trew <66286082+jamestrew@users.noreply.github.com>
This commit is contained in:
Michael
2024-04-26 03:25:42 +03:00
committed by GitHub
parent 1084d07cf4
commit 35f94f0ef3
3 changed files with 38 additions and 3 deletions

View File

@@ -280,14 +280,15 @@ utils.transform_path = function(opts, path)
return path, {}
end
---@type fun(opts:table, path: string): string
---@type fun(opts:table, path: string): string, table?
local path_display = vim.F.if_nil(opts.path_display, require("telescope.config").values.path_display)
local transformed_path = path
local path_style = {}
if type(path_display) == "function" then
return path_display(opts, transformed_path), path_style
local custom_transformed_path, custom_path_style = path_display(opts, transformed_path)
return custom_transformed_path, custom_path_style or path_style
elseif utils.is_path_hidden(nil, path_display) then
return "", path_style
elseif type(path_display) == "table" then