From 2de2f1722a5a8d562d812ff5f0bd92e81b12aa75 Mon Sep 17 00:00:00 2001 From: Florian Schmitt Date: Sat, 7 Dec 2024 17:13:26 +0300 Subject: [PATCH] feat(tmux-sessionizer): sort alphabetically --- scripts/tmux-sessionizer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tmux-sessionizer b/scripts/tmux-sessionizer index ca3f019..12b00ff 100755 --- a/scripts/tmux-sessionizer +++ b/scripts/tmux-sessionizer @@ -4,7 +4,7 @@ pushd ~/Code if [[ $# -eq 1 ]]; then selected=$1 else - selected=$(find . -mindepth 1 -maxdepth 1 -type d | fzf) + selected=$(find . -mindepth 1 -maxdepth 1 -type d | sort -f -r | fzf) fi if [[ -z $selected ]]; then