Commit bce74975 authored by Frank Louwers's avatar Frank Louwers
Browse files

drop the foreach, make it even shorter. thanks Marc Cornellà!

parent df67f2ee
......@@ -41,11 +41,8 @@ alias pjo="pj open"
function _pj () {
# might be possible to improve this using glob, without the basename trick
typeset -a projects
foreach i ($PROJECT_PATHS/*)
do
projects+=(${i##*/})
done
projects=($PROJECT_PATHS/*)
projects=$projects:t
_arguments '*:file:($projects)'
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment