diff options
author | Marc Cornellà <marc.cornella@live.com> | 2020-04-22 12:01:30 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2020-04-22 12:01:30 +0200 |
commit | 2560f04982dfc2693221c7c0f47d1a71df09a794 (patch) | |
tree | 5ada34121b99907c1e1ae05c9a46a10cd7d2fe7c /plugins | |
parent | 31eca46ee3b94ca84a038628e0bf6089a7488908 (diff) | |
download | zsh-2560f04982dfc2693221c7c0f47d1a71df09a794.tar.gz zsh-2560f04982dfc2693221c7c0f47d1a71df09a794.tar.bz2 zsh-2560f04982dfc2693221c7c0f47d1a71df09a794.zip |
autojump: clarify need to install it first
Related: #8806
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/autojump/README.md | 2 | ||||
-rw-r--r-- | plugins/autojump/autojump.plugin.zsh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/autojump/README.md b/plugins/autojump/README.md index 18ff793cd..750ff56d1 100644 --- a/plugins/autojump/README.md +++ b/plugins/autojump/README.md @@ -8,4 +8,4 @@ To use it, add `autojump` to the plugins array in your zshrc file: plugins=(... autojump) ``` -More info on the usage: https://github.com/wting/autojump +**Note:** you have to [install autojump](https://github.com/wting/autojump#installation) first. diff --git a/plugins/autojump/autojump.plugin.zsh b/plugins/autojump/autojump.plugin.zsh index d80c88822..f40b0e931 100644 --- a/plugins/autojump/autojump.plugin.zsh +++ b/plugins/autojump/autojump.plugin.zsh @@ -29,6 +29,6 @@ if (( ! found && $+commands[brew] )); then fi fi -(( ! found )) && echo '[oh-my-zsh] autojump script not found' +(( ! found )) && echo '[oh-my-zsh] autojump not found. Please install it first.' unset autojump_paths file found |