summaryrefslogtreecommitdiff
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
parent3fdf1f16e34d22ebdb40bd411467f7b977ec8bb6 (diff)
downloadzsh-023e7e463f572a4cd294985c119d9e81ea70dee8.tar.gz
zsh-023e7e463f572a4cd294985c119d9e81ea70dee8.zip
38567, 38440: Marko Myllynen: completion for locale(1) and iconvconfig(8)
-rw-r--r--ChangeLog7
-rw-r--r--Completion/Linux/Command/_iconvconfig13
-rw-r--r--Completion/Unix/Command/_locale84
3 files changed, 104 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 59a2375d1..81afaa4d9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2016-06-02 Eric Cook <llua@gmx.com>
+ * 38567: Marko Myllynen: Completion/Unix/Command/_locale:
+ completion for locale(1)
+
+ * 38440: Marko Myllynen: Completion/Linux/Command/_iconvconfig:
+ completion for linux's iconvconfig(8)
+
2016-06-02 Oliver Kiddle <opk@zsh.org>
* 38540: Src/Zle/zle_utils.c: fix undo problem by not moving
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
diff --git a/Completion/Unix/Command/_locale b/Completion/Unix/Command/_locale
new file mode 100644
index 000000000..59e04a282
--- /dev/null
+++ b/Completion/Unix/Command/_locale
@@ -0,0 +1,84 @@
+#compdef locale
+
+local curcontext="$curcontext" state state_descr line expl ret=1
+typeset -A opt_args; local -a specs aopts
+
+if _pick_variant gnu='(GNU|EGLIBC)' unix --version; then
+
+ local exargs="-? --help --usage -V --version"
+
+ aopts=( -A "-*" -C -S -s )
+ specs=(
+ '(- *)'{-\?,--help}'[display help information]'
+ '(- *)--usage[display a short usage message]'
+ '(- *)'{-V,--version}'[print program version]'
+ - set1
+ "(-a --all-locales $exargs)"{-a,--all-locales}'[list all available locales]'
+ "(-v --verbose $exargs)"{-v,--verbose}'[display additional information]'
+ - set2
+ "(-m --charmaps $exargs)"{-m,--charmaps}'[list all available charmaps]'
+ - set3
+ "(-c --category-name $exargs)"{-c,--category-name}'[print also locale category]'
+ "(-k --keyword-name $exargs)"{-k,--keyword-name}'[print also keyword of each value]'
+ '*:name:->catkey'
+ )
+
+elif [[ $OSTYPE == openbsd* ]]; then
+
+ specs=(
+ '(-m)-a[list all available locales]'
+ '(-a)-m[list all available charmaps]'
+ )
+
+else
+
+ aopts=( -C -A "-*" )
+ specs=(
+ - set1
+ '-a[list all available locales]'
+ - set2
+ '-m[list all available charmaps]'
+ - set3
+ '-c[print also locale category]'
+ '-k[print also keyword of each value]'
+ '*:name:->catkey'
+ )
+fi
+
+_arguments $aopts : $specs && ret=0
+
+if [[ $state == catkey ]]; then
+ typeset -aU cats keys
+
+ case $OSTYPE in
+ *bsd*)
+ # keywords from comparing locale -k list on netbsd and freebsd
+ # the additional keywords freebsd supports will be added via
+ # the reassignment of keys
+ keys+=(
+ charmap decimal_point thousands_sep grouping radixchar thousep int_curr_symbol
+ currency_symbol mon_decimal_point mon_thousands_sep mon_grouping positive_sign
+ negative_sign int_frac_digits frac_digits p_cs_precedes p_sep_by_space n_cs_precedes
+ n_sep_by_space p_sign_posn n_sign_posn int_p_cs_precedes int_p_sep_by_space
+ int_n_cs_precedes int_n_sep_by_space int_p_sign_posn int_n_sign_posn d_t_fmt d_fmt
+ t_fmt am_str pm_str t_fmt_ampm day_1 day_2 day_3 day_4 day_5 day_6 day_7 abday_1
+ abday_2 abday_3 abday_4 abday_5 abday_6 abday_7 mon_1 mon_2 mon_3 mon_4 mon_5 mon_6
+ mon_7 mon_8 mon_9 mon_10 mon_11 mon_12 abmon_1 abmon_2 abmon_3 abmon_4 abmon_5
+ abmon_6 abmon_7 abmon_8 abmon_9 abmon_10 abmon_11 abmon_12 era era_d_fmt era_d_t_fmt
+ era_t_fmt alt_digits yesexpr noexpr yesstr nostr
+ );|
+ (free|net|dragonfly)bsd*) (( words[(I)-k] )) && keys+=(list);;
+ *)
+ cats=( ${${${(f)"$(locale)"}%=*}%(LANG|LANGUAGE|LC_ALL)} )
+ ;;
+ esac
+
+ keys=( $keys ${${(f)"$(locale -k $cats 2>/dev/null)"}%=*} )
+ if [[ $OSTYPE == freebsd* ]] && (( words[(I)list] )); then
+ _message -e values prefix && ret=0
+ else
+ _wanted values expl name compadd "$@" -a - cats keys && ret=0
+ fi
+fi
+
+return ret