Browse Source

Merge pull request #1517 from thisiskun/master

provide the unbundled commands
Robby Russell 11 years ago
parent
commit
07c19b66d3
1 changed files with 1 additions and 0 deletions
  1. 1 0
      plugins/bundler/bundler.plugin.zsh

+ 1 - 0
plugins/bundler/bundler.plugin.zsh

@@ -33,6 +33,7 @@ _run-with-bundler() {
 
 ## Main program
 for cmd in $bundled_commands; do
+  eval "function unbundled_$cmd () { $cmd \$@ }"
   eval "function bundled_$cmd () { _run-with-bundler $cmd \$@}"
   alias $cmd=bundled_$cmd