From 8942935030bbd0762560817a20ffa31bc690cd97 Mon Sep 17 00:00:00 2001 From: Hugues Hiegel Date: Fri, 19 Jul 2013 15:55:13 +0200 Subject: [Internals] Git: another way to show stashes --- 01_Internal.zsh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/01_Internal.zsh b/01_Internal.zsh index 0eb2bfc..caf2a08 100644 --- a/01_Internal.zsh +++ b/01_Internal.zsh @@ -226,13 +226,13 @@ __get_git_branch () local _stashed=$(git stash list | wc -l ) if [ "$_stashed" -gt 0 ] then - my_git_branch+=$C_$_prompt_colors[soft_generic]$_C + my_git_branch+=" "$C_$_prompt_colors[soft_generic]$_C while [ $_stashed -gt 1 ] do - my_git_branch+="·" + my_git_branch+="⚡" _stashed=$(( $_stashed - 1 )) done - my_git_branch+="$C_$color[blink];$_prompt_colors[soft_generic]$_C·" + my_git_branch+="$C_$_prompt_colors[bold_generic];$color[white]$_C⚡" fi fi __debug -- cgit v1.2.3