about summary refs log tree commit diff
path: root/Completion/Zsh/Command/_limit
blob: 852c55c1c85de7950f95d1580440271194419083 (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 -e values "number and scaling factor"
fi