Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
bce74975
Commit
bce74975
authored
May 28, 2014
by
Frank Louwers
Browse files
drop the foreach, make it even shorter. thanks Marc Cornellà!
parent
df67f2ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/pj/pj.plugin.zsh
View file @
bce74975
...
...
@@ -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)'
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment