diff options
author | Robby Russell <robby@planetargon.com> | 2015-09-19 09:02:55 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-09-19 09:02:55 -0700 |
commit | 3b5300c2b3fb02e7761d78e04bc7a3317650d758 (patch) | |
tree | 21b50545d4afc3d6c461b7cbf8827b4874a6bc08 /themes | |
parent | 9bd88bb9aaf12e62b100fd68b95eb530cf953614 (diff) | |
parent | c66c3aef8126bf943b2746afb6a9c2a536990db5 (diff) | |
download | zsh-3b5300c2b3fb02e7761d78e04bc7a3317650d758.tar.gz zsh-3b5300c2b3fb02e7761d78e04bc7a3317650d758.tar.bz2 zsh-3b5300c2b3fb02e7761d78e04bc7a3317650d758.zip |
Merge pull request #4252 from Fice-T/master
Fix graphical bug in cypher theme when return status is non-zero
Diffstat (limited to 'themes')
-rw-r--r-- | themes/cypher.zsh-theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/cypher.zsh-theme b/themes/cypher.zsh-theme index 45df53d22..6e6b78ee6 100644 --- a/themes/cypher.zsh-theme +++ b/themes/cypher.zsh-theme @@ -1,4 +1,4 @@ # Based on evan's prompt # Shows the exit status of the last command if non-zero # Uses "#" instead of "»" when running with elevated privileges -PROMPT="%m %{${fg_bold[red]}%}:: %{${fg[green]}%}%3~%(0?. . ${fg[red]}%? )%{${fg[blue]}%}»%{${reset_color}%} " +PROMPT="%m %{${fg_bold[red]}%}:: %{${fg[green]}%}%3~%(0?. . %{${fg[red]}%}%? )%{${fg[blue]}%}»%{${reset_color}%} " |