mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-16 01:50:06 +00:00
quote prompt content with (qqq) instead of (q); the latter breaks on double quotes
This commit is contained in:
parent
913dfb37f7
commit
2f80b186b4
1 changed files with 2 additions and 2 deletions
|
@ -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))}:+ }"
|
||||
|
|
Loading…
Reference in a new issue