don't array-expand unnecessarily

This commit is contained in:
romkatv 2020-01-11 19:25:20 +01:00
parent 8380cee319
commit efe0e79436

View File

@ -5469,7 +5469,7 @@ function _p9k_parse_buffer() {
if [[ $token == *'$'* ]]; then if [[ $token == *'$'* ]]; then
if [[ $token == $~var ]]; then if [[ $token == $~var ]]; then
n=${${token##[^[:IDENT:]]}%%[^[:IDENT:]]} n=${${token##[^[:IDENT:]]}%%[^[:IDENT:]]}
[[ $token == *'"' ]] && v=("${(@P)n}") || v=(${(P)n}) [[ $token == *'"' ]] && v=("${(P)n}") || v=(${(P)n})
tokens[1,0]=(${(qq)v}) tokens[1,0]=(${(qq)v})
continue continue
fi fi