mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 21:44:11 +01:00
26 lines
485 B
Plaintext
26 lines
485 B
Plaintext
#compdef loadkeys
|
|
|
|
case $OSTYPE in
|
|
linux*)
|
|
_arguments \
|
|
'(--clearcompose)-c[clearcompose]' \
|
|
'(-c)--clearcompose' \
|
|
'(--default)-d[default]' \
|
|
'(-d)--default' \
|
|
'(--help)-h[help]' \
|
|
'(-h)--help' \
|
|
'(--mktable)-m[mktable]' \
|
|
'(-m)--mktable' \
|
|
'(--clearstrings)-s[clearstrings]' \
|
|
'(-s)--clearstrings' \
|
|
'(--verbose)-v[verbose]' \
|
|
'(-v)--verbose' \
|
|
':keymap:_files -W /usr/share/keymaps'
|
|
;;
|
|
solaris*)
|
|
_files -W /usr/share/lib/keytables
|
|
;;
|
|
|
|
*) _default;;
|
|
esac
|