mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-12-12 19:18:28 +02:00
don't array-expand unnecessarily
This commit is contained in:
parent
efe0e79436
commit
84f01d5cb3
@ -230,7 +230,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
|
||||||
|
Loading…
Reference in New Issue
Block a user