Commit 965e1cfe authored by Mario Fernandez's avatar Mario Fernandez
Browse files

fix completion for commands wrapped with bundler

parent 762b55bb
...@@ -33,5 +33,10 @@ _run-with-bundler() { ...@@ -33,5 +33,10 @@ _run-with-bundler() {
## Main program ## Main program
for cmd in $bundled_commands; do 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 done
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment