mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-20 14:04:03 +01:00
10 lines
238 B
Plaintext
10 lines
238 B
Plaintext
#compdef zdump
|
|
|
|
if (( ! $+_zoneinfo_dirs )); then
|
|
_zoneinfo_dirs=( /usr/{share,lib,share/lib}/zoneinfo*(/) )
|
|
fi
|
|
|
|
_arguments '-v[lowest possible]' \
|
|
'-c[cutoff]:cutoff year:' \
|
|
'*:timezone:_files -W _zoneinfo_dirs'
|