From 136d1b36bd4a451bdd65aa009baca96a77023832 Mon Sep 17 00:00:00 2001 From: Simon Hauser Date: Fri, 14 Jan 2022 20:54:17 +0100 Subject: [PATCH] fix(health): check fdfind before fd to fix weird output on ubuntu fix #1425 --- lua/telescope/health.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/telescope/health.lua b/lua/telescope/health.lua index 010755e..638c122 100644 --- a/lua/telescope/health.lua +++ b/lua/telescope/health.lua @@ -25,7 +25,7 @@ local optional_dependencies = { package = { { name = "fd", - binaries = { "fd", "fdfind" }, + binaries = { "fdfind", "fd" }, url = "[sharkdp/fd](https://github.com/sharkdp/fd)", optional = true, },