diff --git a/lua/telescope/from_entry.lua b/lua/telescope/from_entry.lua index f109efb19d..486b57cefd 100644 --- a/lua/telescope/from_entry.lua +++ b/lua/telescope/from_entry.lua @@ -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)