Fish · 136 bytes Raw Blame History
1 ## jump to dir
2 #
3 function cdf
4 set -l dir (fd --type d --hidden --follow --exclude .git | fzf)
5 test -n "$dir"; and cd "$dir"
6 end