diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Base/_math | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Completion/Base/_math b/Completion/Base/_math deleted file mode 100644 index 278189ebe..000000000 --- a/Completion/Base/_math +++ /dev/null @@ -1,12 +0,0 @@ -#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 -g '(integer|float)*' || _parameters |