diff options
author | Doug Kearns <dkearns@users.sourceforge.net> | 2010-06-06 13:44:11 +0000 |
---|---|---|
committer | Doug Kearns <dkearns@users.sourceforge.net> | 2010-06-06 13:44:11 +0000 |
commit | a54fdc70be299a203a51d69c4e823f209a4c06ca (patch) | |
tree | 6d1c67674d388e1ca64c4210e283d1bd11eea2c7 /Completion/Unix/Command/_pkginfo | |
parent | 4ad0a25af110e2afe956bce13e901f78fd9e6bcd (diff) | |
download | zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.gz zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.xz zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.zip |
unposted: fix incorrectly capitalized completion descriptions
Diffstat (limited to 'Completion/Unix/Command/_pkginfo')
-rw-r--r-- | Completion/Unix/Command/_pkginfo | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Completion/Unix/Command/_pkginfo b/Completion/Unix/Command/_pkginfo index 0253ab3e3..6c71082ef 100644 --- a/Completion/Unix/Command/_pkginfo +++ b/Completion/Unix/Command/_pkginfo @@ -2,20 +2,20 @@ _pkginfo() { _arguments -s \ - '(-q -r -x)-l[Long listing]' \ - '(-l -r -x)-q[Quiet mode]' \ - '(-l -q -x)-r[Relocation base]' \ - '(-l -q -r)-x[Extracted listing]' \ - '-c[Category]:category: ' \ - '-a[Architecture]:architecture: ' \ - '-v[Version]:version: ' \ + '(-q -r -x)-l[long listing]' \ + '(-l -r -x)-q[quiet mode]' \ + '(-l -q -x)-r[relocation base]' \ + '(-l -q -r)-x[extracted listing]' \ + '-c[category]:category: ' \ + '-a[architecture]:architecture: ' \ + '-v[version]:version: ' \ - set1 \ - '(-p)-i[Select completely installed packages]' \ - '(-i)-p[Select partially installed packages]' \ - '-R[Root path]:root path:_files -/' \ + '(-p)-i[select completely installed packages]' \ + '(-i)-p[select partially installed packages]' \ + '-R[root path]:root path:_files -/' \ '*:package instance:_pkg_instance --_opts installed:set1--R' \ - set2 \ - '-d[Device]:device file:_files' \ + '-d[device]:device file:_files' \ '*:package instance:_pkg_instance --_opts uninstalled:set2--d' } |