You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
powerlevel10k/internal/parse.zsh

284 lines
5.8 KiB
Bash

typeset -gA __pb_cmd_skip=(
5 years ago
'}' ''
'|' ''
'||' ''
'&' ''
'&&' ''
'|&' ''
'&!' ''
'&|' ''
')' ''
'(' ''
'{' ''
'()' ''
'!' ''
';' ''
'if' ''
'fi' ''
'elif' ''
'else' ''
'then' ''
'while' ''
'until' ''
'do' ''
'done' ''
'esac' ''
'end' ''
'coproc' ''
5 years ago
'nocorrect' ''
5 years ago
'noglob' ''
'time' ''
'[[' '\]\]'
'((' '\)\)'
'case' '\)|esac'
';;' '\)|esac'
';&' '\)|esac'
';|' '\)|esac'
'foreach' '\(*\)'
5 years ago
)
typeset -gA __pb_precommand=(
5 years ago
'-' ''
'builtin' ''
'command' ''
'exec' '-[^a]#[a]'
'nohup' ''
'setsid' ''
'eatmydata' ''
'catchsegv' ''
5 years ago
'pkexec' '--user'
'doas' '-[^aCu]#[acU]'
'nice' '-[^n]#[n]|--adjustment'
'stdbuf' '-[^ioe]#[ioe]|--(input|output|error)'
'sudo' '-[^aghpuUCcrtT]#[aghpuUCcrtT]|--(close-from|group|host|prompt|role|type|other-user|command-timeout|user)'
)
typeset -gA __pb_redirect=(
5 years ago
'&>' ''
'>' ''
'>&' ''
'<' ''
'<&' ''
'<>' ''
'&>|' ''
'>|' ''
'&>>' ''
'>>' ''
'>>&' ''
5 years ago
'&>>|' ''
5 years ago
'>>|' ''
'<<<' ''
5 years ago
)
typeset -gA __pb_term=(
5 years ago
'|' ''
'||' ''
5 years ago
';' ''
'&' ''
'&&' ''
'|&' ''
'&!' ''
'&|' ''
';;' ''
';&' ''
';|' ''
5 years ago
'(' ''
')' ''
'{' ''
'}' ''
5 years ago
'()' ''
)
typeset -gA __pb_term_skip=(
5 years ago
'()' ''
'(' '\)'
';;' '\)|esac'
';&' '\)|esac'
';|' '\)|esac'
)
# False positives:
#
# {} always {}
#
5 years ago
# False negatives:
#
5 years ago
# ---------------
5 years ago
# : $(x)
5 years ago
# ---------------
5 years ago
# : `x`
5 years ago
# ---------------
5 years ago
#
5 years ago
# Broken:
#
5 years ago
# ---------------
5 years ago
# ${x/}
5 years ago
# ---------------
# - -- x
# ---------------
# command -p -p x
# ---------------
5 years ago
# *
5 years ago
# ---------------
5 years ago
# x=$y; $x
5 years ago
# ---------------
# x <<END
# ; END
# END
# ---------------
# Setup:
# setopt interactive_comments
# alias x='#'
# Punchline:
# x; y
5 years ago
# ---------------
5 years ago
#
# More brokenness with non-standard options (ignore_braces, ignore_close_braces, etc.).
function _parse_buffer() {
5 years ago
local rcquotes
[[ -o rcquotes ]] && rcquotes=(-o rcquotes)
emulate -L zsh -o extended_glob -o no_nomatch $rcquotes
typeset -ga _buffer_commands=()
5 years ago
local -r id='(<->|[[:alpha:]_][[:IDENT:]]#)'
5 years ago
local -r var="\$$id|\${$id}|\"\$$id\"|\"\${$id}\""
local -i e c=32
local skip n s r state
local -a aln alp alf v commands match mbegin mend
5 years ago
5 years ago
[[ -o interactive_comments ]] && local tokens=(${(Z+C+)1}) || local tokens=(${(z)1})
() {
while (( $#tokens )); do
5 years ago
if (( $#tokens == alp[-1] )); then
aln[-1]=()
alp[-1]=()
if (( $#tokens == alf[-1] )); then
alf[-1]=()
(( e = 0 ))
else
(( e = $#state ))
fi
5 years ago
else
(( e = $#state ))
5 years ago
fi
while (( c-- > 0 )) || return; do
token=$tokens[1]
tokens[1]=()
if (( $+galiases[$token] )); then
(( $aln[(eI)p$token] )) && break
n=p$token
s=$galiases[$token]
elif (( e )); then
break
elif (( $+aliases[$token] )); then
(( $aln[(eI)p$token] )) && break
n=p$token
s=$aliases[$token]
elif [[ $token == (#b)?*.(?*) ]] && (( $+saliases[$match[1]] )); then
(( $aln[(eI)s$match[1]] )) && break
n=s$match[1]
s=${saliases[$match[1]]%% #}
else
break
fi
aln+=$n
alp+=$#tokens
[[ $s == *' ' ]] && alf+=$#tokens
[[ -o interactive_comments ]] && tokens[1,0]=(${(Z+C+)s}) || tokens[1,0]=(${(z)s})
5 years ago
done
case $state in
t|p*)
if (( $+__pb_term[$token] )); then
skip=$__pb_term_skip[$token]
state=${skip:+s}
[[ $token == '()' ]] || _buffer_commands+=($commands)
commands=()
continue
elif [[ $state == t ]]; then
continue
fi;;
s)
if [[ $token == $~skip ]]; then
state=
fi
continue;;
*r)
state[1]=
continue;;
h)
skip=${(b)token}
state=s
continue;;
esac
if [[ $token == '<<'(|-) ]]; then
state=h
continue
5 years ago
fi
if (( $+__pb_redirect[${token#<0-255>}] )); then
state+=r
continue
5 years ago
fi
if [[ $token == *'$'* ]]; then
if [[ $token == $~var ]]; then
n=${${token##[^[:IDENT:]]}%%[^[:IDENT:]]}
[[ $token == *'"' ]] && v=("${(P)n}") || v=(${(P)n})
tokens[1,0]=(${(qq)v})
continue
fi
5 years ago
fi
case $state in
'')
if (( $+__pb_cmd_skip[$token] )); then
skip=$__pb_cmd_skip[$token]
state=${skip:+s}
continue
fi
if [[ $token == *=* ]]; then
v=${(S)token/#(<->|([[:alpha:]_][[:IDENT:]]#(|'['*[^\\](\\\\)#']')))(|'+')=}
if (( $#v < $#token )); then
if [[ $v == '(' ]]; then
state=s
skip='\)'
fi
continue
fi
fi
: ${token::=${(Q)${~token}}};;
p)
: ${token::=${(Q)${~token}}}
case $token in
[^-]*) ;;
--) state=p1; continue;;
$~skip) state=p2; continue;;
*) continue;;
esac;;
p1) ;;
p2)
state=p
continue;;
esac
commands+=$token
if (( $+__pb_precommand[$commands[-1]] )); then
state=p
skip=$__pb_precommand[$commands[-1]]
else
state=t
fi
done
}
_buffer_commands+=($commands)
_buffer_commands=(${(u)_buffer_commands:#('(('*'))'|'`'*'`'|'$'*)})
5 years ago
}