summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorSimon Hauser <Simon-Hauser@outlook.de>2022-01-14 20:54:17 +0100
committerSimon Hauser <Simon-Hauser@outlook.de>2022-01-14 20:54:17 +0100
commit136d1b36bd4a451bdd65aa009baca96a77023832 (patch)
tree8ad191cae5258514bae106ad8c413c6a990e6597 /lua
parente8ccd47c4f748a0db5c84c84e2bc7f518cb94cea (diff)
fix(health): check fdfind before fd to fix weird output on ubuntu
fix #1425
Diffstat (limited to 'lua')
-rw-r--r--lua/telescope/health.lua2
1 files changed, 1 insertions, 1 deletions
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,
},