feat(tmux-sessionizer): sort alphabetically
This commit is contained in:
parent
62605df4b6
commit
2de2f1722a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue