diff options
author | Marc Cornellà <marc.cornella@live.com> | 2019-04-09 22:20:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-09 22:20:00 +0200 |
commit | 0c3499ecd9cdd562ae88fa4b33db97311a78cb07 (patch) | |
tree | ef38f8e189ba46ebcce2b6c5532fbe9a2f92d8c4 /themes | |
parent | afb28d337df91be52eb7f66fb0badc513243825a (diff) | |
parent | 5f9cc016d7fb19004529ea935d6a386846ad46e2 (diff) | |
download | zsh-0c3499ecd9cdd562ae88fa4b33db97311a78cb07.tar.gz zsh-0c3499ecd9cdd562ae88fa4b33db97311a78cb07.tar.bz2 zsh-0c3499ecd9cdd562ae88fa4b33db97311a78cb07.zip |
Fix showing aws prompt out of the box for 'fishy' theme (#7747)
This fixes the RPROMPT setting for fishy theme so as to preserve its old value,
instead of overwriting it like it did before.
Also, fix unnecessary export of RPROMPT in aws plugin.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/fishy.zsh-theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/fishy.zsh-theme b/themes/fishy.zsh-theme index 83bd455b5..00a60f45b 100644 --- a/themes/fishy.zsh-theme +++ b/themes/fishy.zsh-theme @@ -14,7 +14,7 @@ PROMPT='%n@%m %{$fg[$user_color]%}$(_fishy_collapsed_wd)%{$reset_color%}%(!.#.>) PROMPT2='%{$fg[red]%}\ %{$reset_color%}' local return_status="%{$fg_bold[red]%}%(?..%?)%{$reset_color%}" -RPROMPT='${return_status}$(git_prompt_info)$(git_prompt_status)%{$reset_color%}' +RPROMPT="${RPROMPT}"'${return_status}$(git_prompt_info)$(git_prompt_status)%{$reset_color%}' ZSH_THEME_GIT_PROMPT_PREFIX=" " ZSH_THEME_GIT_PROMPT_SUFFIX="" |