dotfiles

.config/fish/functions/p.fish [raw] [blame]
1function p
2  # Jump into a selected project from `~/Projects`
3  cd ~/Projects/(find ~/Projects -maxdepth 2 -type d -print | cut -d '/' -f5,6 | fzf -1 -q "$argv[1]")
4end