parser bug fix: quote array elements after parameter expansion
parent
d53355cd30
commit
48a61471a7
|
@ -296,7 +296,7 @@ function _p9k_parse_buffer() {
|
|||
if [[ $token == $~var ]]; then
|
||||
n=${${token##[^[:IDENT:]]}%%[^[:IDENT:]]}
|
||||
[[ $token == *'"' ]] && v=("${(P)n}") || v=(${(P)n})
|
||||
tokens[1,0]=(${(qq)v})
|
||||
tokens[1,0]=(${(@qq)v})
|
||||
continue
|
||||
fi
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue