Skip to content

Commit

Permalink
feat: allow going into test's child dir
Browse files Browse the repository at this point in the history
  • Loading branch information
RayGuo-ergou committed Jan 9, 2025
1 parent 38082b1 commit aad264a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/sessionizer
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ if [[ $# -eq 1 ]]; then
else
# If someone wants to make this extensible, i'll accept
# PR
selected=$({ find ~/work ~/git -mindepth 1 -maxdepth 1 -type d; find ~/test -mindepth 2 -maxdepth 2 -type d; } | fzf --no-preview --header-first --header="Create/Switch Session")
selected=$({ find ~/work ~/git -mindepth 1 -maxdepth 1 -type d; find ~/test -mindepth 1 -maxdepth 2 -type d; } | fzf --no-preview --header-first --header="Create/Switch Session")
fi

if [[ -z $selected ]]; then
Expand Down

0 comments on commit aad264a

Please sign in to comment.