mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
drop the foreach, make it even shorter. thanks Marc Cornellà!
This commit is contained in:
parent
df67f2ee30
commit
bce74975d0
1 changed files with 2 additions and 5 deletions
|
@ -41,11 +41,8 @@ alias pjo="pj open"
|
||||||
function _pj () {
|
function _pj () {
|
||||||
# might be possible to improve this using glob, without the basename trick
|
# might be possible to improve this using glob, without the basename trick
|
||||||
typeset -a projects
|
typeset -a projects
|
||||||
foreach i ($PROJECT_PATHS/*)
|
projects=($PROJECT_PATHS/*)
|
||||||
do
|
projects=$projects:t
|
||||||
projects+=(${i##*/})
|
|
||||||
done
|
|
||||||
|
|
||||||
_arguments '*:file:($projects)'
|
_arguments '*:file:($projects)'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue