You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
655 B
33 lines
655 B
alias pjo="pj open" |
|
|
|
function pj () { |
|
cmd="cd" |
|
file=$1 |
|
|
|
if [[ "open" == "$file" ]] then |
|
shift |
|
file=$* |
|
cmd=(${(s: :)EDITOR}) |
|
else |
|
file=$* |
|
fi |
|
|
|
for project in $PROJECT_PATHS; do |
|
if [[ -d $project/$file ]] then |
|
$cmd "$project/$file" |
|
unset project # Unset project var |
|
return |
|
fi |
|
done |
|
|
|
echo "No such project $1" |
|
} |
|
|
|
function _pj () { |
|
# might be possible to improve this using glob, without the basename trick |
|
typeset -a projects |
|
projects=($PROJECT_PATHS/*) |
|
projects=$projects:t |
|
_arguments "*:file:($projects)" |
|
} |
|
compdef _pj pj
|
|
|