diff options
author | Clint Adams <clint@users.sourceforge.net> | 2001-05-02 15:02:31 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2001-05-02 15:02:31 +0000 |
commit | e8f602b4e13b09f728f267ac52aa4296787870c0 (patch) | |
tree | ec6cbcdd39880d4f784b8f2275b495c556dbaecb /Completion/Unix | |
parent | 6a0c6b1b27a2a3dcca1d54e86f6a95c3d5adfda5 (diff) | |
download | zsh-e8f602b4e13b09f728f267ac52aa4296787870c0.tar.gz zsh-e8f602b4e13b09f728f267ac52aa4296787870c0.tar.xz zsh-e8f602b4e13b09f728f267ac52aa4296787870c0.zip |
14201: completion for loadkeys
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Command/_loadkeys | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_loadkeys b/Completion/Unix/Command/_loadkeys new file mode 100644 index 000000000..f9908afc4 --- /dev/null +++ b/Completion/Unix/Command/_loadkeys @@ -0,0 +1,16 @@ +#compdef loadkeys + +_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' |