mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
trying to debug color code that won't deref in vcs_states
This commit is contained in:
parent
d6902db6ef
commit
cd5c2e7dcd
1 changed files with 5 additions and 3 deletions
|
@ -769,8 +769,9 @@ prompt_vcs() {
|
|||
typeset -AH vcs_states
|
||||
vcs_states=(
|
||||
'clean' 'green'
|
||||
'modified' 'red'
|
||||
'untracked' 'yellow'
|
||||
'modified' 'yellow'
|
||||
'untracked' 'green'
|
||||
'actionformat' 'red'
|
||||
)
|
||||
|
||||
VCS_CHANGESET_PREFIX=''
|
||||
|
@ -790,7 +791,8 @@ prompt_vcs() {
|
|||
VCS_DEFAULT_FORMAT="$VCS_CHANGESET_PREFIX%b%c%u%m"
|
||||
zstyle ':vcs_info:*' formats "$VCS_DEFAULT_FORMAT"
|
||||
|
||||
zstyle ':vcs_info:*' actionformats "%b %F{red}| %a%f"
|
||||
zstyle ':vcs_info:*' actionformats "%b %F{${vcs_states['actionformat']}}| %a%f"
|
||||
# zstyle ':vcs_info:*' actionformats "%b %F{red}| %a%f"
|
||||
|
||||
zstyle ':vcs_info:*' stagedstr " $(print_icon 'VCS_STAGED_ICON')"
|
||||
zstyle ':vcs_info:*' unstagedstr " $(print_icon 'VCS_UNSTAGED_ICON')"
|
||||
|
|
Loading…
Reference in a new issue