mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-12-01 15:40:07 +00:00
parse process substitutions
This commit is contained in:
parent
cbb3f2bc41
commit
35d2432326
1 changed files with 11 additions and 5 deletions
|
@ -5477,10 +5477,16 @@ function _p9k_parse_buffer() {
|
||||||
(( ic )) && tokens[1,0]=(${(Z+C+)s}) || tokens[1,0]=(${(z)s})
|
(( ic )) && tokens[1,0]=(${(Z+C+)s}) || tokens[1,0]=(${(z)s})
|
||||||
done
|
done
|
||||||
|
|
||||||
if [[ $token == '<<'(|-) ]]; then
|
case $token in
|
||||||
|
'<<'(|-))
|
||||||
state=h
|
state=h
|
||||||
continue
|
continue
|
||||||
fi
|
;;
|
||||||
|
'`'*'`'|'"`'*'`"'|'$('*')'|'"$('*')"'|['<>=']'('*')')
|
||||||
|
s=${${token##('"'|)(['$<>']|)?}%%?('"'|)}
|
||||||
|
(( ic )) && tokens+=(';' ${(Z+C+)s}) || tokens+=(';' ${(z)s})
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
case $state in
|
case $state in
|
||||||
*r)
|
*r)
|
||||||
|
@ -5638,7 +5644,7 @@ function _p9k_parse_buffer() {
|
||||||
cmd+=$token$'\0'
|
cmd+=$token$'\0'
|
||||||
else
|
else
|
||||||
state=t
|
state=t
|
||||||
[[ $token == ('(('*'))'|'`'*'`'|'$'*|['<>']'('*')'|*$'\0'*) ]] || cmd+=$token$'\0'
|
[[ $token == ('(('*'))'|'`'*'`'|'$'*|['<>=']'('*')'|*$'\0'*) ]] || cmd+=$token$'\0'
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
} always {
|
} always {
|
||||||
|
|
Loading…
Reference in a new issue