diff options
Diffstat (limited to 'Completion/Zsh/Command/_limit')
-rw-r--r-- | Completion/Zsh/Command/_limit | 9 |
1 files changed, 9 insertions, 0 deletions
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 |