summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2011-12-26 10:31:16 -0800
committerRobby Russell <robby@planetargon.com>2011-12-26 10:31:16 -0800
commit22b99779d9af031aba96d52c95d71b0f6c11b380 (patch)
treec5076ca30018dde605324db7f62f466b8a4e4f64
parent2864e421eaf67adf334efc9e5d0e05e8af1221b4 (diff)
parent444145b495338ca3fbc86f0956003a1074f845df (diff)
downloadzsh-22b99779d9af031aba96d52c95d71b0f6c11b380.tar.gz
zsh-22b99779d9af031aba96d52c95d71b0f6c11b380.tar.bz2
zsh-22b99779d9af031aba96d52c95d71b0f6c11b380.zip
Merge pull request #702 from sirech/fix-bundle-compl
Pull request #594 was not really correct
-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