blob: 82b97fe4a92d1c1e7d916eb26f049a8534df8cde (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#compdef -math-
local expl
if [[ "$PREFIX" = *[^a-zA-Z0-9_]* ]]; then
IPREFIX="$IPREFIX${PREFIX%%[a-zA-Z0-9_]#}"
PREFIX="${PREFIX##*[^a-zA-Z0-9_]}"
fi
if [[ "$SUFFIX" = *[^a-zA-Z0-9_]* ]]; then
ISUFFIX="${SUFFIX##[a-zA-Z0-9_]#}$ISUFFIX"
SUFFIX="${SUFFIX%%[^a-zA-Z0-9_]*}"
fi
_description expl parameter
compgen "$expl[@]" -v
|