fix: previewer if cwd is not curr dir (#2084)

path needs to be expanded for filereadable and isdirectory
This commit is contained in:
Simon Hauser
2022-08-10 21:47:37 +02:00
committed by GitHub
parent 8f80e82108
commit 8746347ac4

View File

@@ -25,9 +25,15 @@ function from_entry.path(entry, validate, escape)
end
-- only 0 if neither filereadable nor directory
local invalid = vim.fn.filereadable(path) + vim.fn.isdirectory(path)
if validate and invalid == 0 then
return
if validate then
-- We need to expand for filereadable and isdirectory
-- TODO(conni2461): we are not going to return the expanded path because
-- this would lead to cache misses in the perviewer.
-- Requires overall refactoring in previewer interface
local expanded = vim.fn.expand(path)
if (vim.fn.filereadable(expanded) + vim.fn.isdirectory(expanded)) == 0 then
return
end
end
if escape then
return vim.fn.fnameescape(path)