aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--internal/parse.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/parse.zsh b/internal/parse.zsh
index fda2a36b..6e3c5feb 100644
--- a/internal/parse.zsh
+++ b/internal/parse.zsh
@@ -230,7 +230,7 @@ function _p9k_parse_buffer() {
if [[ $token == *'$'* ]]; then
if [[ $token == $~var ]]; then
n=${${token##[^[:IDENT:]]}%%[^[:IDENT:]]}
- [[ $token == *'"' ]] && v=("${(@P)n}") || v=(${(P)n})
+ [[ $token == *'"' ]] && v=("${(P)n}") || v=(${(P)n})
tokens[1,0]=(${(qq)v})
continue
fi