dotfiles/fish.configlink/functions/prj.fish

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 16:44:38 +00:00
and commandline -f execute
end