Merge pull request #220 from dritter/rename_vcs_default_state

Rename vcs default state
This commit is contained in:
Ben Hilburn 2016-02-26 09:53:59 -05:00
commit b3fae48893
5 changed files with 92 additions and 4 deletions

View file

@ -764,11 +764,11 @@ prompt_vcs() {
VCS_WORKDIR_DIRTY=false
VCS_WORKDIR_HALF_DIRTY=false
# The vcs segment can have three different states - defaults to ''.
# The vcs segment can have three different states - defaults to 'clean'.
local current_state=""
typeset -AH vcs_states
vcs_states=(
'' 'green'
'clean' 'green'
'modified' 'red'
'untracked' 'yellow'
)
@ -824,7 +824,7 @@ prompt_vcs() {
if [[ "$VCS_WORKDIR_HALF_DIRTY" == true ]]; then
current_state='untracked'
else
current_state=''
current_state='clean'
fi
fi
"$1_prompt_segment" "${0}_${(U)current_state}" "$2" "${vcs_states[$current_state]}" "$DEFAULT_COLOR" "$vcs_prompt" "$vcs_visual_identifier"