autojump.plugin.zsh 926 B

1234567891011121314151617
  1. if [ $commands[autojump] ]; then # check if autojump is installed
  2. if [ -f $HOME/.autojump/etc/profile.d/autojump.zsh ]; then # manual user-local installation
  3. . $HOME/.autojump/etc/profile.d/autojump.zsh
  4. elif [ -f /usr/share/autojump/autojump.zsh ]; then # debian and ubuntu package
  5. . /usr/share/autojump/autojump.zsh
  6. elif [ -f /etc/profile.d/autojump.zsh ]; then # manual installation
  7. . /etc/profile.d/autojump.zsh
  8. elif [ -f /etc/profile.d/autojump.sh ]; then # gentoo installation
  9. . /etc/profile.d/autojump.sh
  10. elif [ -f /usr/local/share/autojump/autojump.zsh ]; then # freebsd installation
  11. . /usr/local/share/autojump/autojump.zsh
  12. elif [ -f /opt/local/etc/profile.d/autojump.zsh ]; then # mac os x with ports
  13. . /opt/local/etc/profile.d/autojump.zsh
  14. elif [ $commands[brew] -a -f `brew --prefix`/etc/autojump.zsh ]; then # mac os x with brew
  15. . `brew --prefix`/etc/autojump.zsh
  16. fi
  17. fi