mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-19 15:41:32 +02:00
29 lines
624 B
Text
29 lines
624 B
Text
#compdef -brace-parameter-
|
|
|
|
_parameters -e
|
|
|
|
|
|
# Without the `-e' option, we would use the following (see the file
|
|
# Core/_parameters for more enlightenment).
|
|
|
|
# local lp ls n q
|
|
|
|
# if [[ "$SUFFIX" = *\}* ]]; then
|
|
# ISUFFIX="${SUFFIX#*\}}$ISUFFIX"
|
|
# SUFFIX="${SUFFIX%%\}*}"
|
|
# suf=()
|
|
# elif [[ "$LBUFFER" = *\$\{[^}]#\$\{[^}]#$PREFIX ||
|
|
# "$compstate[insert]" = *menu* ]]; then
|
|
# suf=(-b '')
|
|
# else
|
|
# suf=(-b ' ')
|
|
# fi
|
|
|
|
# lp="$LBUFFER[1,-${#PREFIX}-1]"
|
|
# ls="$RBUFFER[${#SUFFIX}+1,-1]"
|
|
# n=${(M)#ls##\"#}
|
|
# q=${(M)lp%%\"#}
|
|
|
|
# [[ n -gt 0 ]] && suf=''
|
|
|
|
# _parameters "$suf[@]" -Qs "${q[1,-n-1]}" -r '-:?#%+=[/}'
|