diff options
| author | Marko Myllynen <myllynen@redhat.com> | 2016-06-01 23:32:12 -0400 |
|---|---|---|
| committer | Eric Cook <illua@users.sourceforge.net> | 2016-06-02 22:03:23 -0400 |
| commit | 023e7e463f572a4cd294985c119d9e81ea70dee8 (patch) | |
| tree | 9ec2fd12e13002e3e6fdf9368411095dfcedfee9 /Completion/Linux/Command | |
| parent | 38540: fix undo problem by not moving the current change when only undoing a ... (diff) | |
| download | zsh-023e7e463f572a4cd294985c119d9e81ea70dee8.tar zsh-023e7e463f572a4cd294985c119d9e81ea70dee8.tar.gz zsh-023e7e463f572a4cd294985c119d9e81ea70dee8.tar.bz2 zsh-023e7e463f572a4cd294985c119d9e81ea70dee8.tar.lz zsh-023e7e463f572a4cd294985c119d9e81ea70dee8.tar.xz zsh-023e7e463f572a4cd294985c119d9e81ea70dee8.tar.zst zsh-023e7e463f572a4cd294985c119d9e81ea70dee8.zip | |
38567, 38440: Marko Myllynen: completion for locale(1) and iconvconfig(8)
Diffstat (limited to 'Completion/Linux/Command')
| -rw-r--r-- | Completion/Linux/Command/_iconvconfig | 13 |
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 |
