summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMario Fernandez <mario.fernandez@hceris.com>2011-11-09 23:01:45 +0100
committerMario Fernandez <mario.fernandez@hceris.com>2011-11-09 23:01:45 +0100
commit444145b495338ca3fbc86f0956003a1074f845df (patch)
tree350611e3e583b460b91f0965eff0c46f018ae0cb
parent757fa3314d1c041ab715dbda838f3e9b2ff9ce17 (diff)
downloadzsh-444145b495338ca3fbc86f0956003a1074f845df.tar.gz
zsh-444145b495338ca3fbc86f0956003a1074f845df.tar.bz2
zsh-444145b495338ca3fbc86f0956003a1074f845df.zip
FIX: commands like ruby and rake where not being completed
-rw-r--r--plugins/bundler/bundler.plugin.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/bundler/bundler.plugin.zsh b/plugins/bundler/bundler.plugin.zsh
index 3c96b8da9..89f62232b 100644
--- a/plugins/bundler/bundler.plugin.zsh
+++ b/plugins/bundler/bundler.plugin.zsh
@@ -41,6 +41,6 @@ for cmd in $bundled_commands; do
alias $cmd=bundled_$cmd
if which _$cmd > /dev/null 2>&1; then
- compdef _$cmd bundled_$cmd
+ compdef _$cmd bundled_$cmd=$cmd
fi
done