diff options
-rw-r--r-- | 12_Prompts.zsh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/12_Prompts.zsh b/12_Prompts.zsh index b6cf511..37237ea 100644 --- a/12_Prompts.zsh +++ b/12_Prompts.zsh @@ -103,9 +103,8 @@ old_precmd() SVNREVSIZE=${#${SVNREV:+:r$SVNREV}} if [ "$SVNREV" != "" ] then - SVNSTATUS="$(svn status 2>&-)" - SVNSTATUS=${SVNSTATUS:+$prompt_colors[not_up_to_date]} - SVNSTATUS=${SVNSTATUS:-$prompt_colors[up_to_date]} + SVNSTATUS="$(svn diff 2>&-)" + SVNSTATUS=${${SVNSTATUS:+$prompt_colors[not_up_to_date]}:-$prompt_colors[up_to_date]} fi SVNREV=${SVNREV:+$C_$prompt_colors[doubledot]$_C:$C_$SVNSTATUS$_C"r"$SVNREV} [ "$DEBUG" = "yes" ] && echo |