From 6a75b3c0c59a8d6fc6718acaaffada3503611dd8 Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Thu, 1 Nov 2001 15:41:40 +0000 Subject: 16197: `limit' accepts `unlimited'. --- Completion/Zsh/Command/_limit | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Completion/Zsh/Command/_limit (limited to 'Completion/Zsh/Command/_limit') diff --git a/Completion/Zsh/Command/_limit b/Completion/Zsh/Command/_limit new file mode 100644 index 000000000..ba384f980 --- /dev/null +++ b/Completion/Zsh/Command/_limit @@ -0,0 +1,9 @@ +#compdef limit + +if ! ((CURRENT % 2)); then + _limits +elif [[ $PREFIX = u* ]]; then + compadd unlimited +else + _message "number and scaling factor" +fi -- cgit 1.4.1