1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-21 02:50:08 +00:00

quote prompt content with (qqq) instead of (q); the latter breaks on double quotes

This commit is contained in:
romkatv 2019-06-01 08:48:48 +02:00
parent 913dfb37f7
commit 2f80b186b4

View file

@ -263,7 +263,7 @@ left_prompt_segment() {
_p9k_escape_rcurly $fg
local content="${(j::):-$_P9K_RETVAL${^@}}"
(( expand )) || content="\${(Q)\${:-${(q)content}}}"
(( expand )) || content="\${(Q)\${:-${(qqq)content}}}"
_P9K_PROMPT+="\${\${:-$cond}:+\${\${:-\${_P9K_C::=${content}}${_P9K_CACHE_VAL[3]}"
(( has_icon )) && _P9K_PROMPT+="\${\${\${#_P9K_C}:#$(($# * $#fg))}:+ }"
@ -338,7 +338,7 @@ right_prompt_segment() {
_p9k_escape_rcurly $fg
local content="${(j::):-$_P9K_RETVAL${^@}}"
(( expand )) || content="\${(Q)\${:-${(q)content}}}"
(( expand )) || content="\${(Q)\${:-${(qqq)content}}}"
_P9K_PROMPT+="\${\${:-$cond}:+\${\${:-\${_P9K_C::=${content}}${_P9K_CACHE_VAL[3]}"
(( has_icon )) && _P9K_PROMPT+="\${\${\${#_P9K_C}:#$(($# * $#fg))}:+ }"