about summary refs log tree commit diff
path: root/Completion/Unix/Command/_zdump
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2003-08-28 15:22:21 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2003-08-28 15:22:21 +0000
commite8d542a9be070ef2561a999d6638d9c2fb58f34c (patch)
treeaee02a37abb9e544718381760f201d6171d78358 /Completion/Unix/Command/_zdump
parent3f52f95978987d51b4f8f548c7cccc5cae7d64f5 (diff)
downloadzsh-e8d542a9be070ef2561a999d6638d9c2fb58f34c.tar.gz
zsh-e8d542a9be070ef2561a999d6638d9c2fb58f34c.tar.xz
zsh-e8d542a9be070ef2561a999d6638d9c2fb58f34c.zip
merge changes from 4.1
Diffstat (limited to 'Completion/Unix/Command/_zdump')
-rw-r--r--Completion/Unix/Command/_zdump10
1 files changed, 10 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_zdump b/Completion/Unix/Command/_zdump
new file mode 100644
index 000000000..5ba695529
--- /dev/null
+++ b/Completion/Unix/Command/_zdump
@@ -0,0 +1,10 @@
+#compdef zdump
+
+if (( ! $+_zoneinfo_dirs )); then
+  _zoneinfo_dirs=( /usr/{share,lib,share/lib}/{zoneinfo*,locale/TZ}(/)
+fi
+
+_arguments \
+  '-v[lowest possible]' \
+  '-c[cutoff]:cutoff year:' \
+  '*:timezone:_files -W _zoneinfo_dirs'