about summary refs log tree commit diff
path: root/Completion/Zsh/Command/_limit
blob: ba384f980597ad963ddd4841a605ac33e2dc1710 (plain) (blame)
1
2
3
4
5
6
7
8
9
#compdef limit

if ! ((CURRENT % 2)); then
    _limits
elif [[ $PREFIX = u* ]]; then
    compadd unlimited
else
    _message "number and scaling factor"
fi