6 lines
139 B
Fish
Raw Normal View History

function prj --description "cd to a project"
set projdir (ls $PROJ | fzf)
and cd $PROJ/$projdir
2021-08-26 10:44:38 -06:00
and commandline -f execute
end