1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-03 09:21:19 +02:00
zsh/Completion/Unix/Command/_loadkeys
2001-05-03 13:05:48 +00:00

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