about summary refs log tree commit diff
path: root/Completion/Linux
diff options
context:
space:
mode:
authorMarko Myllynen <myllynen@redhat.com>2016-06-01 23:32:12 -0400
committerEric Cook <illua@users.sourceforge.net>2016-06-02 22:03:23 -0400
commit023e7e463f572a4cd294985c119d9e81ea70dee8 (patch)
tree9ec2fd12e13002e3e6fdf9368411095dfcedfee9 /Completion/Linux
parent3fdf1f16e34d22ebdb40bd411467f7b977ec8bb6 (diff)
downloadzsh-023e7e463f572a4cd294985c119d9e81ea70dee8.tar.gz
zsh-023e7e463f572a4cd294985c119d9e81ea70dee8.tar.xz
zsh-023e7e463f572a4cd294985c119d9e81ea70dee8.zip
38567, 38440: Marko Myllynen: completion for locale(1) and iconvconfig(8)
Diffstat (limited to 'Completion/Linux')
-rw-r--r--Completion/Linux/Command/_iconvconfig13
1 files changed, 13 insertions, 0 deletions
diff --git a/Completion/Linux/Command/_iconvconfig b/Completion/Linux/Command/_iconvconfig
new file mode 100644
index 000000000..5afb10a38
--- /dev/null
+++ b/Completion/Linux/Command/_iconvconfig
@@ -0,0 +1,13 @@
+#compdef iconvconfig
+
+local exargs="-? --help --usage -V --version"
+
+_arguments -S -s \
+    "($exargs)--nostdlib[do not search system directory]" \
+    "(-o --output= $exargs)"{-o+,--output=}'[specify output file]:output file:_files' \
+    "($exargs)--prefix=[specify system dir prefix]:prefix:_files" \
+    '(- *)'{-\?,--help}'[display help information]' \
+    '(- *)--usage[display a short usage message]' \
+    '(- *)'{-V,--version}'[print program version]' \
+    '*:directory:_files -/' \
+    && return 0