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

Fix completion for bundled commands using the bundler plugin
This commit is contained in:
Robby Russell 2011-10-10 05:44:26 -07:00
commit dfc7319491

View File

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