Skip to content

Commit

Permalink
fix: previewer if cwd is not curr dir (#2084)
Browse files Browse the repository at this point in the history
path needs to be expanded for filereadable and isdirectory

(cherry picked from commit 8746347)
  • Loading branch information
Conni2461 committed Aug 10, 2022
1 parent fdb4be9 commit 760c779
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions lua/telescope/from_entry.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 760c779

Please sign in to comment.