mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 08:00:06 +00:00
fix heredocs
This commit is contained in:
parent
770bf93444
commit
b59f74a7bd
1 changed files with 19 additions and 7 deletions
|
@ -198,6 +198,11 @@ function _parse_buffer() {
|
|||
(( ic )) && tokens[1,0]=(${(Z+C+)s}) || tokens[1,0]=(${(z)s})
|
||||
done
|
||||
|
||||
if [[ $token == '<<'(|-) ]]; then
|
||||
state=h
|
||||
continue
|
||||
fi
|
||||
|
||||
case $state in
|
||||
t|p*)
|
||||
if (( $+__pb_term[$token] )); then
|
||||
|
@ -218,16 +223,23 @@ function _parse_buffer() {
|
|||
state[1]=
|
||||
continue;;
|
||||
h)
|
||||
skip=${(b)token}
|
||||
state=s
|
||||
while (( $#tokens )); do
|
||||
(( e = ${tokens[(i)$token]} ))
|
||||
if [[ $tokens[e-1] == ';' && $tokens[e+1] == ';' ]]; then
|
||||
tokens[1,e]=()
|
||||
break
|
||||
else
|
||||
tokens[1,e]=()
|
||||
fi
|
||||
done
|
||||
while (( $#alp && alp[-1] >= $#tokens )); do
|
||||
aln[-1]=()
|
||||
alp[-1]=()
|
||||
done
|
||||
state=t
|
||||
continue;;
|
||||
esac
|
||||
|
||||
if [[ $token == '<<'(|-) ]]; then
|
||||
state=h
|
||||
continue
|
||||
fi
|
||||
|
||||
if (( $+__pb_redirect[${token#<0-255>}] )); then
|
||||
state+=r
|
||||
continue
|
||||
|
|
Loading…
Reference in a new issue