configuration/config/fish/functions/go.fish

7 lines
228 B
Fish
Raw Normal View History

2017-02-13 18:10:03 +01:00
function go --description 'Jump to directories'
2017-03-22 18:19:08 +01:00
lr /home /data /etc -L -t '(name ~~ ".*" && prune || print) && type = d && !(name = ".git")' \
2017-02-13 18:10:03 +01:00
| fzf \
| read -l dir
[ "$dir" ]; and cd $dir; and clear
end