diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:19:00 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:19:00 +0000 |
commit | 7019318294a641d99d68b5301d4aaef16524f95b (patch) | |
tree | c3e6b019784bae9d3a87616b919c9f3533fc9695 /Completion/AIX | |
parent | ff910b0d6344bbdd7ca7b7905dc94c39398cf7c6 (diff) | |
download | zsh-7019318294a641d99d68b5301d4aaef16524f95b.tar.gz zsh-7019318294a641d99d68b5301d4aaef16524f95b.tar.xz zsh-7019318294a641d99d68b5301d4aaef16524f95b.zip |
moved to Completion/AIX/Command/_lsdev
Diffstat (limited to 'Completion/AIX')
-rw-r--r-- | Completion/AIX/_lsdev | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/Completion/AIX/_lsdev b/Completion/AIX/_lsdev deleted file mode 100644 index 1bb1a8802..000000000 --- a/Completion/AIX/_lsdev +++ /dev/null @@ -1,38 +0,0 @@ -#compdef lsdev - -local curcontext="${curcontext}" state line expl - -_arguments -C \ - '(-P)-C[list info about device in customized devices object class]' \ - '(-C -l)-P[list info about device in predefined object class]' \ - '-c[specify a device class]:device class:->class' \ - '-f[read flags from file]:files:_files' \ - '-F[specify output format]:format:->columnname' \ - '-H[display headers above columns]' \ - '-h[display command usage]' \ - '(-P)-l[specify device logical name]:device logical name' \ - '-r[display set of values in a column]:columnname:->columnname' \ - '(-P)-S[specify a device state]:device state:(Available Defined Stopped)' \ - '-s[specify a device subclass]:device subclass:->subclass' \ - '-t[specify a device type name]:device type name:->devtype' && return 0 - -case $state in - class) - _wanted devclass expl 'device class names' \ - compadd - $(lsdev ${words[(r)-[CP]]:--P} -r class) - ;; - subclass) - _wanted devsubclass expl 'device subclass names' \ - compadd - $(lsdev ${words[(r)-[CP]]:--P} -r subclass) - ;; - devtype) - _wanted devtype expl 'device type names' \ - compadd - $(lsdev ${words[(r)-[CP]]:--P} -r type) - ;; - columnname) - [[ $words[CURRENT-1] = -F ]] && compset -P '*[^a-zA-Z]' - _wanted devcolumnname expl 'column names' \ - compadd - ${(s: :)words[(r)-C]:+name status location} \ - class subclass description type - ;; -esac |