diff options
author | Arnaud Thimel <thimel@codelutin.com> | 2016-02-25 16:29:51 +0100 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2021-01-15 19:02:57 +0100 |
commit | 63477411eb073ec3ddaa925f6e88bfa94db1e596 (patch) | |
tree | b5d3d18ff0930f197c5e71c1abb9fe45c3802fb6 /plugins/git-prompt | |
parent | 5db205908e9b5c43b74106c313712200c08fa79c (diff) | |
download | zsh-63477411eb073ec3ddaa925f6e88bfa94db1e596.tar.gz zsh-63477411eb073ec3ddaa925f6e88bfa94db1e596.tar.bz2 zsh-63477411eb073ec3ddaa925f6e88bfa94db1e596.zip |
feat(git-prompt): display untracked files count
Closes #8435
Closes #4880
Diffstat (limited to 'plugins/git-prompt')
-rw-r--r-- | plugins/git-prompt/git-prompt.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/git-prompt/git-prompt.plugin.zsh b/plugins/git-prompt/git-prompt.plugin.zsh index da674af98..43a327ab0 100644 --- a/plugins/git-prompt/git-prompt.plugin.zsh +++ b/plugins/git-prompt/git-prompt.plugin.zsh @@ -63,7 +63,7 @@ git_super_status() { STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_CHANGED$GIT_CHANGED%{${reset_color}%}" fi if [ "$GIT_UNTRACKED" -ne "0" ]; then - STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_UNTRACKED%{${reset_color}%}" + STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_UNTRACKED$GIT_UNTRACKED%{${reset_color}%}" fi if [ "$GIT_CHANGED" -eq "0" ] && [ "$GIT_CONFLICTS" -eq "0" ] && [ "$GIT_STAGED" -eq "0" ] && [ "$GIT_UNTRACKED" -eq "0" ]; then STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_CLEAN" @@ -83,7 +83,7 @@ ZSH_THEME_GIT_PROMPT_CONFLICTS="%{$fg[red]%}%{✖%G%}" ZSH_THEME_GIT_PROMPT_CHANGED="%{$fg[blue]%}%{✚%G%}" ZSH_THEME_GIT_PROMPT_BEHIND="%{↓%G%}" ZSH_THEME_GIT_PROMPT_AHEAD="%{↑%G%}" -ZSH_THEME_GIT_PROMPT_UNTRACKED="%{…%G%}" +ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%}%{…%G%}" ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[green]%}%{✔%G%}" # Set the prompt. |