Browse Source

git: fix parse_git_dirty()

If oh-my-zsh.hide-status is configured, the 'clean' code won't be
generated, and some themes might end up distorted. Let's generate the
'clean' code even when we don't want the show the dirty status.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Felipe Contreras 12 years ago
parent
commit
d615f64374
1 changed files with 2 additions and 0 deletions
  1. 2 0
      lib/git.zsh

+ 2 - 0
lib/git.zsh

@@ -21,6 +21,8 @@ parse_git_dirty() {
     else
     else
       echo "$ZSH_THEME_GIT_PROMPT_CLEAN"
       echo "$ZSH_THEME_GIT_PROMPT_CLEAN"
     fi  
     fi  
+  else
+    echo "$ZSH_THEME_GIT_PROMPT_CLEAN"
   fi  
   fi  
 }
 }