dotfiles/fish.configlink/functions/prj.fish
2021-08-26 10:44:38 -06:00

6 lines
139 B
Fish

function prj --description "cd to a project"
set projdir (ls $PROJ | fzf)
and cd $PROJ/$projdir
and commandline -f execute
end