mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
5 lines
108 B
Fish
5 lines
108 B
Fish
function prj --description "cd to a project"
|
|
set projdir (ls $PROJ | fzf)
|
|
and cd $PROJ/$projdir
|
|
end
|