about summary refs log tree commit diff
path: root/Completion/Base/_brace_parameter
blob: d45e317be91aadb4403ce73f5ab8a2685b252c8f (plain) (blame)
1
2
3
4
5
6
7
8
9
#compdef -brace-parameter-

if [[ "$SUFFIX" = *\}* ]]; then
  ISUFFIX="${SUFFIX#*\}}$ISUFFIX"
  SUFFIX="${SUFFIX%%\}*}"
  _parameters -S '} ' -r '-:?#%+=[/'
else
  _parameters -S '} ' -r '-:?#%+=[/'
fi