diff options
author | Hauke Stange <hauke@jimdo.com> | 2012-11-28 10:47:31 +0100 |
---|---|---|
committer | Hauke Stange <hauke@jimdo.com> | 2012-11-28 10:47:31 +0100 |
commit | 5c983257726dfc8ac97d5a5e259dcaa9540b808b (patch) | |
tree | 1ea11e8f25db21fd965bc16d7767f115f3d44179 /plugins | |
parent | 12f416b125501e9faaae061bc55b833158348156 (diff) | |
download | zsh-5c983257726dfc8ac97d5a5e259dcaa9540b808b.tar.gz zsh-5c983257726dfc8ac97d5a5e259dcaa9540b808b.tar.bz2 zsh-5c983257726dfc8ac97d5a5e259dcaa9540b808b.zip |
fixed autojump: autocompletion works with homebrew again
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/autojump/autojump.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/autojump/autojump.plugin.zsh b/plugins/autojump/autojump.plugin.zsh index 42d2d44d6..fdce3a246 100644 --- a/plugins/autojump/autojump.plugin.zsh +++ b/plugins/autojump/autojump.plugin.zsh @@ -1,4 +1,4 @@ -if [ $commands[autojump] ]; then # check if autojump is +if [ $commands[autojump] ]; then # check if autojump is installed if [ -f /usr/share/autojump/autojump.zsh ]; then # debian and ubuntu package . /usr/share/autojump/autojump.zsh elif [ -f /etc/profile.d/autojump.zsh ]; then # manual installation |