configuration/config/fish/functions/go.fish
2017-03-31 17:13:45 +02:00

7 lines
229 B
Fish

function go --description 'Jump to directories'
lr /home /data /etc -L -t '(name ~~ ".*" && prune || print) && type = d && !(name = ".git")' \
| fzf --height 10 \
| read -l dir
[ "$dir" ]; and cd $dir
end