diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2019-07-23 00:19:04 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2019-07-23 00:19:04 +0300 |
commit | 37f0a4d54870905d459490f692249174053030f8 (patch) | |
tree | 05b21e6e7e63cbcc0b4b93e0ba7162030463d84c /internal/p10k.zsh | |
parent | 6b9a2e0cecd8612c57439b2957a6400884e996c0 (diff) |
cleanup
Diffstat (limited to 'internal/p10k.zsh')
-rwxr-xr-x | internal/p10k.zsh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/p10k.zsh b/internal/p10k.zsh index 8b25ff54..62cc7098 100755 --- a/internal/p10k.zsh +++ b/internal/p10k.zsh @@ -3199,7 +3199,7 @@ _p9k_init_lines() { if [[ -n $_P9K_RETVAL ]]; then _P9K_RETVAL+=%b%k%f # Not escaped for historical reasons. - _P9K_RETVAL='${_P9K_Z::="'${${_P9K_RETVAL//\\/\\\\}//\"/\\\"}'"}' + _P9K_RETVAL='${:-"'${${_P9K_RETVAL//\\/\\\\}//\"/\\\"}'"}' if [[ $POWERLEVEL9K_PROMPT_ON_NEWLINE == true ]]; then _P9K_LINE_SUFFIX_LEFT[-2]+=$_P9K_RETVAL else @@ -3215,7 +3215,7 @@ _p9k_init_lines() { _p9k_get_icon '' MULTILINE_FIRST_PROMPT_PREFIX [[ _P9K_RETVAL == *%* ]] && _P9K_RETVAL+=%b%k%f # Not escaped for historical reasons. - _P9K_RETVAL='${_P9K_Z::="'${${_P9K_RETVAL//\\/\\\\}//\"/\\\"}'"}' + _P9K_RETVAL='${:-"'${${_P9K_RETVAL//\\/\\\\}//\"/\\\"}'"}' _P9K_LINE_PREFIX_LEFT[1]=$_P9K_RETVAL$_P9K_LINE_PREFIX_LEFT[1] fi @@ -3223,7 +3223,7 @@ _p9k_init_lines() { _p9k_get_icon '' MULTILINE_LAST_PROMPT_PREFIX [[ _P9K_RETVAL == *%* ]] && _P9K_RETVAL+=%b%k%f # Not escaped for historical reasons. - _P9K_RETVAL='${_P9K_Z::="'${${_P9K_RETVAL//\\/\\\\}//\"/\\\"}'"}' + _P9K_RETVAL='${:-"'${${_P9K_RETVAL//\\/\\\\}//\"/\\\"}'"}' _P9K_LINE_PREFIX_LEFT[-1]=$_P9K_RETVAL$_P9K_LINE_PREFIX_LEFT[-1] fi @@ -3251,7 +3251,7 @@ _p9k_init_lines() { _p9k_get_icon '' MULTILINE_NEWLINE_PROMPT_PREFIX [[ _P9K_RETVAL == *%* ]] && _P9K_RETVAL+=%b%k%f # Not escaped for historical reasons. - _P9K_RETVAL='${_P9K_Z::="'${${_P9K_RETVAL//\\/\\\\}//\"/\\\"}'"}' + _P9K_RETVAL='${:-"'${${_P9K_RETVAL//\\/\\\\}//\"/\\\"}'"}' _P9K_LINE_PREFIX_LEFT[2,-2]=$_P9K_RETVAL${^_P9K_LINE_PREFIX_LEFT[2,-2]} fi |