From f395f1415fe308f58da34a8dc8562fd576a47f6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=84min=20Baumeler?= Date: Fri, 29 Aug 2025 09:38:31 +0200 Subject: [PATCH] improved fzf sorting --- src/sh/tools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sh/tools.sh b/src/sh/tools.sh index c03ea05..5211c2d 100644 --- a/src/sh/tools.sh +++ b/src/sh/tools.sh @@ -1,5 +1,5 @@ if command -v "fzf" >/dev/null; then - FZF="fzf --black --ansi --cycle" + FZF="fzf --black --ansi --cycle --tiebreak=chunk,index" else err "Did not find the command-line fuzzy finder fzf." exit 1