diff options
author | zghember <zghpku@gmail.com> | 2015-01-03 14:41:34 +0800 |
---|---|---|
committer | zghember <zghpku@gmail.com> | 2015-01-03 14:41:34 +0800 |
commit | 8105d4acc960229e8c7fa9dc6936d8ce881c6b8d (patch) | |
tree | 3c3ead3f01aa7cfc645155a3c992f046ec328155 /plugins/autojump | |
parent | 6fd0b73e9aba568640005798f737cd73ad0bfdf4 (diff) | |
parent | 175b4a807383530aa75145b5b6fdedb3ce1f11f2 (diff) | |
download | zsh-8105d4acc960229e8c7fa9dc6936d8ce881c6b8d.tar.gz zsh-8105d4acc960229e8c7fa9dc6936d8ce881c6b8d.tar.bz2 zsh-8105d4acc960229e8c7fa9dc6936d8ce881c6b8d.zip |
Merge commit '175b4a807383530aa75145b5b6fdedb3ce1f11f2'
Diffstat (limited to 'plugins/autojump')
-rw-r--r-- | plugins/autojump/autojump.plugin.zsh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/autojump/autojump.plugin.zsh b/plugins/autojump/autojump.plugin.zsh index 652d22696..4cf036401 100644 --- a/plugins/autojump/autojump.plugin.zsh +++ b/plugins/autojump/autojump.plugin.zsh @@ -1,6 +1,8 @@ if [ $commands[autojump] ]; then # check if autojump is installed if [ -f $HOME/.autojump/etc/profile.d/autojump.zsh ]; then # manual user-local installation . $HOME/.autojump/etc/profile.d/autojump.zsh + elif [ -f $HOME/.autojump/share/autojump/autojump.zsh ]; then # another manual user-local installation + . $HOME/.autojump/share/autojump/autojump.zsh elif [ -f $HOME/.nix-profile/etc/profile.d/autojump.zsh ]; then # nix installation . $HOME/.nix-profile/etc/profile.d/autojump.zsh elif [ -f /usr/share/autojump/autojump.zsh ]; then # debian and ubuntu package |