Merge pull request #594 from sirech/fix-bundle-compl

Fix completion for bundled commands using the bundler plugin
master
Robby Russell 15 years ago
commit dfc7319491
  1. 7
      plugins/bundler/bundler.plugin.zsh

@ -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

Loading…
Cancel
Save