1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-27 14:11:14 +01:00
zsh/Completion/Base/_math
2000-05-09 17:16:08 +00:00

12 lines
290 B
Text

#compdef -math- let
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
_parameters