diff options
author | Alex Parker <misterparker@gmail.com> | 2015-10-23 13:00:12 -0600 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2019-04-09 19:13:52 +0200 |
commit | 5e9ee67f2b7e53c9e4bb5a0220276a97a22ca0e6 (patch) | |
tree | a18f443c786cd29f43a57d0fb05717e93cf1b977 /plugins/autojump/autojump.plugin.zsh | |
parent | 481a649f90008e8c45e650fb7127c9c7df0028e8 (diff) | |
download | zsh-5e9ee67f2b7e53c9e4bb5a0220276a97a22ca0e6.tar.gz zsh-5e9ee67f2b7e53c9e4bb5a0220276a97a22ca0e6.tar.bz2 zsh-5e9ee67f2b7e53c9e4bb5a0220276a97a22ca0e6.zip |
Update autojump.plugin.zsh
I was adding autojump on a new machine and annoyingly forgot that autojump
was to be installed on its own. This may be helpful.
Diffstat (limited to 'plugins/autojump/autojump.plugin.zsh')
-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 3946106b0..c7da73b23 100644 --- a/plugins/autojump/autojump.plugin.zsh +++ b/plugins/autojump/autojump.plugin.zsh @@ -20,4 +20,6 @@ if [ $commands[autojump] ]; then # check if autojump is installed elif [ $commands[brew] -a -f `brew --prefix`/etc/autojump.sh ]; then # mac os x with brew . `brew --prefix`/etc/autojump.sh fi +else + echo 'Please install autojump to enable the plugin (https://github.com/wting/autojump)' fi |