1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-19 21:44:11 +01:00
zsh/Completion/Unix/Command/_loadkeys

26 lines
485 B
Plaintext
Raw Normal View History

2001-05-02 17:02:31 +02:00
#compdef loadkeys
2001-05-03 15:05:48 +02:00
case $OSTYPE in
linux*)
_arguments \
2001-05-02 17:02:31 +02:00
'(--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'
2001-05-03 15:05:48 +02:00
;;
solaris*)
2001-05-02 18:04:41 +02:00
_files -W /usr/share/lib/keytables
2001-05-03 15:05:48 +02:00
;;
2001-05-02 18:04:41 +02:00
2001-05-03 15:05:48 +02:00
*) _default;;
esac