diff options
author | Doug Kearns <dkearns@users.sourceforge.net> | 2011-06-20 02:24:56 +0000 |
---|---|---|
committer | Doug Kearns <dkearns@users.sourceforge.net> | 2011-06-20 02:24:56 +0000 |
commit | 67ef9605f12969b5eab407f83fb117867b15655f (patch) | |
tree | 782622f6e2f43fcfd6e481ac6e8089dba4ce579a /Completion/Unix/Command/_at | |
parent | 59a4cc38ea4e0aa3e9d7a42f701c7059cf7ceae3 (diff) | |
download | zsh-67ef9605f12969b5eab407f83fb117867b15655f.tar.gz zsh-67ef9605f12969b5eab407f83fb117867b15655f.tar.xz zsh-67ef9605f12969b5eab407f83fb117867b15655f.zip |
unposted: clean up completion descriptions as per Etc/completion-style-guide
Diffstat (limited to 'Completion/Unix/Command/_at')
-rw-r--r-- | Completion/Unix/Command/_at | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Completion/Unix/Command/_at b/Completion/Unix/Command/_at index 4e2d28e27..8734e6b55 100644 --- a/Completion/Unix/Command/_at +++ b/Completion/Unix/Command/_at @@ -7,29 +7,29 @@ typeset -A opt_args case $service in atrm) _arguments \ - '-V[Print version number]' \ + '-V[print version number]' \ '*:job number:->jobs' ;; atq) _arguments \ - '-V[Print version number]' \ - '-q[Uses specified queue]:a-z+A-Z' + '-V[print version number]' \ + '-q[uses specified queue]:a-z+A-Z' ;; at|batch) _arguments \ - new-job \ - '-V[Print version number]' \ - '-q[Uses specified queue, uppercase acts as batch]:a-z+A-Z' \ - '-f[Read job from file rather than from stdin]:file:_files' \ - '-v[Show the time the job will be executed]' \ - '-m[Send mail even if there was no output]' \ + '-V[print version number]' \ + '-q[uses specified queue, uppercase acts as batch]:a-z+A-Z' \ + '-f[read job from file rather than from stdin]:file:_files' \ + '-v[show the time the job will be executed]' \ + '-m[send mail even if there was no output]' \ ':time:' \ - atq \ - '-l[Alias for atq]' \ + '-l[alias for atq]' \ - atrm \ - '-d[Alias for atrm]' \ + '-d[alias for atrm]' \ - show-job \ - '-c[Cat specified jobs to stdout]:*:job number:->jobs' + '-c[cat specified jobs to stdout]:*:job number:->jobs' esac case $state in |