mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-11 13:01:28 +02:00
9 lines
166 B
Text
9 lines
166 B
Text
#compdef limit
|
|
|
|
if ! ((CURRENT % 2)); then
|
|
_limits
|
|
elif [[ $PREFIX = u* ]]; then
|
|
compadd unlimited
|
|
else
|
|
_message -e values "number and scaling factor"
|
|
fi
|