summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugues Hiegel <hugues@hiegel.fr>2009-01-08 15:45:28 +0100
committerHugues Hiegel <hugues@hiegel.fr>2009-01-08 15:47:13 +0100
commit522fe8c60740ce77e39e6313a81c0d4bcb95f26d (patch)
treee029cfc05c0ce9cbd7446027716fa2424bb258d6
parent19ebc499cda608dd2e0f756910f1f3a61aa0a167 (diff)
[PROMPT] lightens up GITBRANCH without this unuseful color
-rw-r--r--12_Prompts.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/12_Prompts.zsh b/12_Prompts.zsh
index dd8850a..ae9da85 100644
--- a/12_Prompts.zsh
+++ b/12_Prompts.zsh
@@ -172,7 +172,7 @@ update_prompt()
# then we reduce the path until it reaches the last path element,
spaceleft=$(($spaceleft - $GITBRANCHSIZE))
[ $spaceleft -lt $minimalpathsize ] && spaceleft=$minimalpathsize
- GITBRANCH=${GITBRANCH:+$C_$prompt_colors[doubledot]$_C $C_"$(get_git_status)"$_C$GITBRANCH}
+ GITBRANCH=${GITBRANCH:+ $C_"$(get_git_status)"$_C$GITBRANCH}
CURDIR="$C_$prompt_colors[path]$_C%`echo $spaceleft`<..<"$MY_PATH"%<<$C_$color[none]$_C"
[ "$DEBUG" = "yes" ] && echo
}