mirror of
https://git.code.sf.net/p/zsh/code
synced 2026-04-23 00:55:49 -04:00
10 lines
166 B
Plaintext
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
|