diff options
author | Marc Cornellà <marc.cornella@live.com> | 2020-02-25 12:21:06 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2020-02-25 12:21:06 +0100 |
commit | d959283898f4c969579346a6d3596d9dd8fa3532 (patch) | |
tree | f0f40addab88b4c57c9bb91af05449cb73a7eb1e /themes | |
parent | b72607bc8e83c9ffc02409ae8a7fed6a8866e022 (diff) | |
download | zsh-d959283898f4c969579346a6d3596d9dd8fa3532.tar.gz zsh-d959283898f4c969579346a6d3596d9dd8fa3532.tar.bz2 zsh-d959283898f4c969579346a6d3596d9dd8fa3532.zip |
avit: fix prompt sequence (fixes #8678)
Diffstat (limited to 'themes')
-rw-r--r-- | themes/avit.zsh-theme | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/avit.zsh-theme b/themes/avit.zsh-theme index 51701572b..0261f0ff3 100644 --- a/themes/avit.zsh-theme +++ b/themes/avit.zsh-theme @@ -7,9 +7,9 @@ typeset +H _hist_no="%{$fg[grey]%}%h%{$reset_color%}" PROMPT=' $(_user_host)${_current_dir} $(git_prompt_info) $(ruby_prompt_info) -%{%F{%(!.red.white)}%}▶%{$resetcolor%} ' +%{%(!.%F{red}.%F{white})%}▶%{$resetcolor%} ' -PROMPT2='%{%F{%(!.red.white)}%}◀%{$reset_color%} ' +PROMPT2='%{%(!.%F{red}.%F{white})%}◀%{$reset_color%} ' RPROMPT='$(vi_mode_prompt_info)%{$(echotc UP 1)%}$(_git_time_since_commit) $(git_prompt_status) ${_return_status}%{$(echotc DO 1)%}' |