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/BSD/Command/_procstat | |
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/BSD/Command/_procstat')
-rw-r--r-- | Completion/BSD/Command/_procstat | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Completion/BSD/Command/_procstat b/Completion/BSD/Command/_procstat index b6343beff..f8bc54290 100644 --- a/Completion/BSD/Command/_procstat +++ b/Completion/BSD/Command/_procstat @@ -5,13 +5,13 @@ local pids pids=(${${${(f)"$(/usr/bin/procstat -ah)"}/[[:space:]]#/}/[[:space:]]*[[:space:]](ELF[[:digit:]]#[[:space:]]|-[[:space:]]#)/:}) _arguments -s \ -'-b[Display binary information for the process]' \ -'-c[Display command line arguments for the process]' \ -'-f[Display file descriptor information for the process]' \ -'-k[Display the stacks of kernel threads in the process]' \ -'-s[Display security credential information for the process]' \ -'-t[Display thread information for the process]' \ -'-v[Display virtual memory mappings for the process]' \ -'-h[Suppress table headers.]' \ -'-a[All processes]' \ -':Process id:(($pids))' +'-b[display binary information for the process]' \ +'-c[display command line arguments for the process]' \ +'-f[display file descriptor information for the process]' \ +'-k[display the stacks of kernel threads in the process]' \ +'-s[display security credential information for the process]' \ +'-t[display thread information for the process]' \ +'-v[display virtual memory mappings for the process]' \ +'-h[suppress table headers]' \ +'-a[all processes]' \ +':process id:(($pids))' |