fix completion for commands wrapped with bundler

This commit is contained in:
Mario Fernandez 2011-09-10 11:35:08 +02:00
parent 762b55bb2b
commit 965e1cfefa

View File

@ -33,5 +33,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