Browse Source

Revert "agnoster theme shows error code instead of an "x""

This reverts commit f09af5717923cca4e5c538e14846ea4816295949.

It is far more aesthetically pleasing, and conveys the correct amount of information. The exact numeric status code is extremely rarely of use, and increases cognitive parsing burden on the user.
(cherry picked from commit 8f664edcaf55adcc540f0fe43d4205b66e4f9fb6)
Isaac Wolkerstorfer 11 years ago
parent
commit
e4624c6a36
1 changed files with 1 additions and 1 deletions
  1. 1 1
      themes/agnoster.zsh-theme

+ 1 - 1
themes/agnoster.zsh-theme

@@ -95,7 +95,7 @@ prompt_dir() {
 prompt_status() {
 prompt_status() {
   local symbols
   local symbols
   symbols=()
   symbols=()
-  [[ $RETVAL -ne 0 ]] && symbols+="%{%F{red}%}$RETVAL"
+  [[ $RETVAL -ne 0 ]] && symbols+="%{%F{red}%}"
   [[ $UID -eq 0 ]] && symbols+="%{%F{yellow}%}⚡"
   [[ $UID -eq 0 ]] && symbols+="%{%F{yellow}%}⚡"
   [[ $(jobs -l | wc -l) -gt 0 ]] && symbols+="%{%F{cyan}%}⚙"
   [[ $(jobs -l | wc -l) -gt 0 ]] && symbols+="%{%F{cyan}%}⚙"