From 81ab44d00c797367d4d2a73aa0feb124c91707b7 Mon Sep 17 00:00:00 2001 From: HIEGEL Hugues Date: Tue, 10 Jun 2008 10:51:50 +0200 Subject: svn diff instead of svn status, that's quicker... --- 12_Prompts.zsh | 5 ++--- 1 file 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 -- cgit v1.2.3