diff options
author | Claudio Bandera <claudio.bandera@kit.edu> | 2015-08-28 10:54:17 +0200 |
---|---|---|
committer | Claudio Bandera <claudio.bandera@kit.edu> | 2015-08-30 23:10:24 +0200 |
commit | 2cfe557beb7fec2e67ea8cd0096eeff0be14b00f (patch) | |
tree | 93b4de1a4aa7f366960ace9c5e88cad8c2b318b1 | |
parent | 989911c595b19aac9ecb4aa87eb2ac4d57610c86 (diff) | |
download | git-sonar-2cfe557beb7fec2e67ea8cd0096eeff0be14b00f.tar.gz git-sonar-2cfe557beb7fec2e67ea8cd0096eeff0be14b00f.zip |
Changed symbol for stash
-rwxr-xr-x | radar-base.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/radar-base.sh b/radar-base.sh index aa8ed2f..1be76e4 100755 --- a/radar-base.sh +++ b/radar-base.sh @@ -473,13 +473,13 @@ zsh_color_remote_commits() { bash_stash_status() { local number_stashes="$(git stash list | wc -l)" if [ $number_stashes -gt 0 ]; then - printf " $number_stashes\x01\033[1;33m\x02␣\x01\033[0m\x02)" + printf " $number_stashes\x01\033[1;33m\x02=\x01\033[0m\x02)" fi } zsh_stash_status() { local number_stashes="$(git stash list | wc -l)" if [ $number_stashes -gt 0 ]; then - printf %s " $number_stashes%{$fg_bold[yellow]%}␣%{$reset_color%})" + printf %s " $number_stashes%{$fg_bold[yellow]%}=%{$reset_color%})" fi }
\ No newline at end of file |