mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-12-26 00:41:57 +00:00
handle for x (y) z
This commit is contained in:
parent
b8c9e83661
commit
dfc5382c0d
1 changed files with 10 additions and 7 deletions
|
@ -86,9 +86,16 @@ typeset -gA _p9k_term=(
|
||||||
'()' ''
|
'()' ''
|
||||||
)
|
)
|
||||||
|
|
||||||
|
typeset -gA _p9k_skip_arg=(
|
||||||
|
';;' '\)|esac'
|
||||||
|
';&' '\)|esac'
|
||||||
|
';|' '\)|esac'
|
||||||
|
'(' '\)'
|
||||||
|
'()' ''
|
||||||
|
)
|
||||||
|
|
||||||
# False positives:
|
# False positives:
|
||||||
#
|
#
|
||||||
# for x (y) z
|
|
||||||
# {} always {}
|
# {} always {}
|
||||||
#
|
#
|
||||||
# Completely broken:
|
# Completely broken:
|
||||||
|
@ -158,12 +165,8 @@ function _p9k_extract_commands() {
|
||||||
if [[ -n $skip ]]; then
|
if [[ -n $skip ]]; then
|
||||||
if [[ $skip == '^' ]]; then
|
if [[ $skip == '^' ]]; then
|
||||||
if (( $+_p9k_term[$token] )); then
|
if (( $+_p9k_term[$token] )); then
|
||||||
if [[ $token == '()' ]]; then
|
skip=$_p9k_skip_arg[$token]
|
||||||
skip=
|
[[ $token == '()' ]] || _p9k_commands+=($commands)
|
||||||
else
|
|
||||||
_p9k_commands+=($commands)
|
|
||||||
[[ $token == ';'[';&|'] ]] && skip='\)|esac' || skip=
|
|
||||||
fi
|
|
||||||
commands=()
|
commands=()
|
||||||
fi
|
fi
|
||||||
elif [[ $token == $~skip ]]; then
|
elif [[ $token == $~skip ]]; then
|
||||||
|
|
Loading…
Reference in a new issue