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
Ohmyzsh
Commits
dfc73194
Commit
dfc73194
authored
Oct 10, 2011
by
Robby Russell
Browse files
Merge pull request #594 from sirech/fix-bundle-compl
Fix completion for bundled commands using the bundler plugin
parents
cceb387e
965e1cfe
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/bundler/bundler.plugin.zsh
View file @
dfc73194
...
...
@@ -37,5 +37,10 @@ _run-with-bundler() {
## Main program
for
cmd
in
$bundled_commands
;
do
alias
$cmd
=
"_run-with-bundler
$cmd
"
eval
"function bundled_
$cmd
() { _run-with-bundler
$cmd
\$
@}"
alias
$cmd
=
bundled_
$cmd
if
which _
$cmd
>
/dev/null 2>&1
;
then
compdef _
$cmd
bundled_
$cmd
fi
done
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