about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Ackersviller <packersv@users.sourceforge.net>2007-06-04 02:50:55 +0000
committerPaul Ackersviller <packersv@users.sourceforge.net>2007-06-04 02:50:55 +0000
commit2f7e40d69d23cb4669f0874121f37445ebe4f2f6 (patch)
tree17ecf2593075112a463bcba010238953ba380021
parent8ee5f077fce392449742234cece8d103d488b556 (diff)
downloadzsh-2f7e40d69d23cb4669f0874121f37445ebe4f2f6.tar.gz
zsh-2f7e40d69d23cb4669f0874121f37445ebe4f2f6.tar.xz
zsh-2f7e40d69d23cb4669f0874121f37445ebe4f2f6.zip
Merge of revision 1.3.
-rw-r--r--Completion/Unix/Command/_mencal27
1 files changed, 27 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_mencal b/Completion/Unix/Command/_mencal
new file mode 100644
index 000000000..ca56c609d
--- /dev/null
+++ b/Completion/Unix/Command/_mencal
@@ -0,0 +1,27 @@
+#compdef mencal
+
+local curcontext="$curcontext" state line ret=1
+
+_arguments -C \
+  '(--monday -m)'{-m,--monday}'[monday as first day of work]' \
+  '-1[current month]' \
+  '-3[previous, current, and next month]' \
+  '-y[all-year calendar]::year:' \
+  '(--quiet -q)'{-q,--quiet}'[no top information]' \
+  '(--nocolor -n)'{-n,--nocolor}'[noncolored output]' \
+  '(--icolor -i)'{-i,--icolor}'[intersection color]:color:(red green blue yellow violet cyan shiny bold)' \
+  '(-)'{-h,--help}'[display help informaiton]' \
+  '(-)'{-V,--version}'[print version information]' \
+  \*{-c,--config}'[config]:options:->option' && ret=0
+
+if [[ $state = option ]]; then
+  _values -s , 'config option' \
+    '(s start)'{s,start}'[start day]:day' \
+    '(l length)'{l,length}'[period length]:length' \
+    '(d duration)'{d,duration}'[menstruation duration]:duration' \
+    '(n name)'{n,name}'[name of subject]:name' \
+    '(f file)'{f,file}'[filename]:file:_files' \
+    '(c color)'{c,color}'[color for menstruation days]:color:(red green blue yellow violet cyan shiny bold)' && ret=0
+fi
+
+return ret