mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
bug fix: add a space before arrows in pure style; fixes #517
This commit is contained in:
parent
678733c68f
commit
6f6c9b457e
1 changed files with 3 additions and 3 deletions
|
@ -137,13 +137,13 @@
|
||||||
# Show '*' when there are staged, unstaged or untracked files.
|
# Show '*' when there are staged, unstaged or untracked files.
|
||||||
typeset -g POWERLEVEL9K_VCS_DIRTY_ICON='*'
|
typeset -g POWERLEVEL9K_VCS_DIRTY_ICON='*'
|
||||||
# Show '⇣' if local branch is behind remote.
|
# Show '⇣' if local branch is behind remote.
|
||||||
typeset -g POWERLEVEL9K_VCS_INCOMING_CHANGES_ICON='⇣'
|
typeset -g POWERLEVEL9K_VCS_INCOMING_CHANGES_ICON=':⇣'
|
||||||
# Show '⇡' if local branch is ahead of remote.
|
# Show '⇡' if local branch is ahead of remote.
|
||||||
typeset -g POWERLEVEL9K_VCS_OUTGOING_CHANGES_ICON='⇡'
|
typeset -g POWERLEVEL9K_VCS_OUTGOING_CHANGES_ICON=':⇡'
|
||||||
# Don't show the number of commits next to the ahead/behind arrows.
|
# Don't show the number of commits next to the ahead/behind arrows.
|
||||||
typeset -g POWERLEVEL9K_VCS_{COMMITS_AHEAD,COMMITS_BEHIND}_MAX_NUM=1
|
typeset -g POWERLEVEL9K_VCS_{COMMITS_AHEAD,COMMITS_BEHIND}_MAX_NUM=1
|
||||||
# Remove space between '⇣' and '⇡' and all trailing spaces.
|
# Remove space between '⇣' and '⇡' and all trailing spaces.
|
||||||
typeset -g POWERLEVEL9K_VCS_CONTENT_EXPANSION='${${P9K_CONTENT/⇣* ⇡/⇣⇡}// }'
|
typeset -g POWERLEVEL9K_VCS_CONTENT_EXPANSION='${${${P9K_CONTENT/⇣* :⇡/⇣⇡}// }//:/ }'
|
||||||
|
|
||||||
# Grey current time.
|
# Grey current time.
|
||||||
typeset -g POWERLEVEL9K_TIME_FOREGROUND=$grey
|
typeset -g POWERLEVEL9K_TIME_FOREGROUND=$grey
|
||||||
|
|
Loading…
Reference in a new issue