mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-12 08:10:07 +00:00
Allow users to overwrite the color for the visual identifier only.
This commit is contained in:
parent
036433dd53
commit
0c528461fb
1 changed files with 8 additions and 0 deletions
|
@ -159,6 +159,10 @@ left_prompt_segment() {
|
|||
local visual_identifier
|
||||
if [[ -n $5 ]]; then
|
||||
visual_identifier="$(print_icon $5)"
|
||||
# Allow users to overwrite the color for the visual identifier only.
|
||||
local visual_identifier_color_variable=POWERLEVEL9K_${(U)1#prompt_}_VISUAL_IDENTIFIER_COLOR
|
||||
set_default $visual_identifier_color_variable $fg
|
||||
visual_identifier="%F{${(P)visual_identifier_color_variable}%}$visual_identifier%f"
|
||||
# Add an whitespace if we print more than just the visual identifier
|
||||
[[ -n $4 ]] && visual_identifier="$visual_identifier "
|
||||
fi
|
||||
|
@ -221,6 +225,10 @@ right_prompt_segment() {
|
|||
if [[ -n $5 ]]; then
|
||||
# Swap the spaces around an icon if the icon is displayed on the right side.
|
||||
visual_identifier=$(print_icon $5 | sed -E "s/( *)([^ ]*)( *)/\3\2\1/")
|
||||
# Allow users to overwrite the color for the visual identifier only.
|
||||
local visual_identifier_color_variable=POWERLEVEL9K_${(U)1#prompt_}_VISUAL_IDENTIFIER_COLOR
|
||||
set_default $visual_identifier_color_variable $fg
|
||||
visual_identifier="%F{${(P)visual_identifier_color_variable}%}$visual_identifier%f"
|
||||
# Add an whitespace if we print more than just the visual identifier
|
||||
[[ -n $4 ]] && visual_identifier=" $visual_identifier"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue