1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-11 04:20:01 +01:00
zsh/Completion/Zsh/Command/_limit
2002-04-16 07:48:43 +00:00

10 lines
166 B
Plaintext

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