1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-04 09:51:27 +02:00
zsh/Completion/Unix/Command/_iconv
Oliver Kiddle 79323d6d41 16842: resolve name clash for nc between netcat and the nedit client for
completion and add _pick_variant to resolve program variants in general
2002-03-15 16:26:08 +00:00

45 lines
1.4 KiB
Plaintext

#compdef iconv
local expl curcontext="$curcontext" state line codeset LOCPATH
if _pick_variant gnu=GNU unix --version; then
_arguments -C \
{'(--from-code --list)-f','(-f --list)--from-code='}'[specify code set of input file]:code set:->codeset' \
{'(--to-code --list)-t','(-t --list)--to-code='}'[specify code set for output]:code set:->codeset' \
'--list[list all character code sets]' \
'--verbose[print progress information]' \
{'(--help)-\?','(-\?)--help'}'[display help information]' \
'--usage[display a short usage message]' \
{'(--version)-V','(-V)--version'}'[print program version]' \
'1:file:_files' && return 0
if [[ $state = codeset ]]; then
_wanted codesets expl 'code set' \
compadd "$@" ${${(s:,:)$(iconv --list|sed -n '/^$/,$ p')}## #}
fi
else
_arguments -C \
'-f[specify code set of input file]:code set:->codeset' \
'-t[specify code set for output]:code set:->codeset' \
'1:file:_files' && return 0
if [[ $state = codeset ]]; then
if [[ -f /usr/lib/iconv/iconv_data ]]; then # IRIX & Solaris
codeset=( ${${(f)"$(</usr/lib/iconv/iconv_data)"}%%[[:blank:]]*} )
elif [[ -d ${LOCPATH:=/usr/lib/nls/loc}/iconv ]]; then # OSF
codeset=( $LOCPATH/iconv/*(N:t) )
codeset=( ${(j:_:s:_:)codeset} )
else
return 1
fi
_wanted codesets expl 'code set' compadd "$@" -a codeset
fi
fi