From 10a3310546284faae4ada397a61d68e0a8d0d9f7 Mon Sep 17 00:00:00 2001 From: Simon Hauser Date: Sun, 10 Jul 2022 21:28:22 +0200 Subject: fix: from_entry escape and validation (#2058) --- lua/telescope/from_entry.lua | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'lua/telescope/from_entry.lua') diff --git a/lua/telescope/from_entry.lua b/lua/telescope/from_entry.lua index b608023..f109efb 100644 --- a/lua/telescope/from_entry.lua +++ b/lua/telescope/from_entry.lua @@ -12,13 +12,7 @@ local from_entry = {} function from_entry.path(entry, validate, escape) escape = vim.F.if_nil(escape, true) - local path - if escape then - path = entry.path and vim.fn.fnameescape(entry.path) or nil - else - path = entry.path - end - + local path = entry.path if path == nil then path = entry.filename end @@ -35,7 +29,9 @@ function from_entry.path(entry, validate, escape) if validate and invalid == 0 then return end - + if escape then + return vim.fn.fnameescape(path) + end return path end -- cgit v1.2.3