mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-12-18 05:40:07 +00:00
Formatting.
This commit is contained in:
parent
7bf7ab94b6
commit
3e41f29223
1 changed files with 6 additions and 6 deletions
|
@ -471,14 +471,14 @@ if [[ "$POWERLEVEL9K_PROMPT_ON_NEWLINE" == true ]]; then
|
||||||
PROMPT='╭─%{%f%b%k%}$(build_left_prompt)
|
PROMPT='╭─%{%f%b%k%}$(build_left_prompt)
|
||||||
╰─ '
|
╰─ '
|
||||||
# The right prompt should be on the same line as the first line of the left prompt.
|
# The right prompt should be on the same line as the first line of the left prompt.
|
||||||
# To do so, there is just a quite ugly workaround: Before zsh draws the RPROMPT,
|
# To do so, there is just a quite ugly workaround: Before zsh draws the RPROMPT,
|
||||||
# we advise it, to go one line up. At the end of RPROMPT, we advise it to go one
|
# we advise it, to go one line up. At the end of RPROMPT, we advise it to go one
|
||||||
# line down. See http://superuser.com/questions/357107/zsh-right-justify-in-ps1
|
# line down. See http://superuser.com/questions/357107/zsh-right-justify-in-ps1
|
||||||
RPROMPT_PREFIX='%{'$'\e[1A''%}' # one line up
|
RPROMPT_PREFIX='%{'$'\e[1A''%}' # one line up
|
||||||
RPROMPT_SUFFIX='%{'$'\e[1B''%}' # one line down
|
RPROMPT_SUFFIX='%{'$'\e[1B''%}' # one line down
|
||||||
else
|
else
|
||||||
PROMPT='%{%f%b%k%}$(build_left_prompt) '
|
PROMPT='%{%f%b%k%}$(build_left_prompt) '
|
||||||
RPROMPT_PREFIX=''
|
RPROMPT_PREFIX=''
|
||||||
RPROMPT_SUFFIX=''
|
RPROMPT_SUFFIX=''
|
||||||
fi
|
fi
|
||||||
RPROMPT=$RPROMPT_PREFIX'%{%f%b%k%}$(build_right_prompt)%{$reset_color%}'$RPROMPT_SUFFIX
|
RPROMPT=$RPROMPT_PREFIX'%{%f%b%k%}$(build_right_prompt)%{$reset_color%}'$RPROMPT_SUFFIX
|
||||||
|
|
Loading…
Reference in a new issue