From e9822545a9ab28254f5faabcd5c34f1d979772b8 Mon Sep 17 00:00:00 2001 From: dlond Date: Mon, 26 May 2025 02:30:39 +1200 Subject: [PATCH] broke the tele picker, fix pt 5 --- lua/custom/utils.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lua/custom/utils.lua b/lua/custom/utils.lua index 9aca987d..0e93ba80 100644 --- a/lua/custom/utils.lua +++ b/lua/custom/utils.lua @@ -10,12 +10,11 @@ local function collect_executables(start_dir) local fd_result = vim .system({ 'fd', - '--type', - 'x', + '.', + start_dir, '--exec', 'file', '{}', - start_dir, }, { text = true }) :wait()