about summary refs log tree commit diff
path: root/Completion/Zsh
diff options
context:
space:
mode:
authorDoug Kearns <dkearns@users.sourceforge.net>2011-06-20 02:24:56 +0000
committerDoug Kearns <dkearns@users.sourceforge.net>2011-06-20 02:24:56 +0000
commit67ef9605f12969b5eab407f83fb117867b15655f (patch)
tree782622f6e2f43fcfd6e481ac6e8089dba4ce579a /Completion/Zsh
parent59a4cc38ea4e0aa3e9d7a42f701c7059cf7ceae3 (diff)
downloadzsh-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/Zsh')
-rw-r--r--Completion/Zsh/Function/_zargs26
1 files changed, 13 insertions, 13 deletions
diff --git a/Completion/Zsh/Function/_zargs b/Completion/Zsh/Function/_zargs
index a4cf0a89e..f1f87b447 100644
--- a/Completion/Zsh/Function/_zargs
+++ b/Completion/Zsh/Function/_zargs
@@ -4,19 +4,19 @@
 local arguments
 
 arguments=( $arguments[@]
-  '(--eof -e)'{--eof=,-e+}'[Change the end-of-input-args string from "--" to eof-str]'
-  '(--exit, -x)'{--exit,-x}'[Exit if the size (see --max-chars) is exceeded]'
-  '--help[Print summary and exit]'
-  '(--interactive, -p)'{--interactive,-p}'[Prompt before executing each command line]'
-  '(--max-args, -n)'{--max-args=,-n+}'[Use at most max-args arguments per command line]'
-  '(--max-chars, -s)'{--max-chars=,-s+}'[Use at most max-chars characters per command line]'
-  '(--max-lines, -l)'{--max-lines=,-l+}'[Use at most max-lines of the input-args per command line]'
-  '(--max-procs, -P)'{--max-procs=,-P+}'[Run up to max-procs command lines in the background at once]'
-  '(--no-run-if-empty, -r)'{--no-run-if-empty,-r}'[Do nothing if there are no input arguments before the eof-str]'
-  '(--null, -0)'{--null,-0}'[Split each input-arg at null bytes, for xargs compatibility]'
-  '(--replace, -i)'{--replace=,-i}'[Substitute replace-str in the initial-args by each initial-arg]'
-  '(--verbose, -t)'{--verbose,-t}'[Print each command line to stderr before executing it]'
-  '--version[Print the version number of zargs and exit]'
+  '(--eof -e)'{--eof=,-e+}'[change the end-of-input-args string from "--" to eof-str]'
+  '(--exit, -x)'{--exit,-x}'[exit if the size (see --max-chars) is exceeded]'
+  '--help[print summary and exit]'
+  '(--interactive, -p)'{--interactive,-p}'[prompt before executing each command line]'
+  '(--max-args, -n)'{--max-args=,-n+}'[use at most max-args arguments per command line]'
+  '(--max-chars, -s)'{--max-chars=,-s+}'[use at most max-chars characters per command line]'
+  '(--max-lines, -l)'{--max-lines=,-l+}'[use at most max-lines of the input-args per command line]'
+  '(--max-procs, -P)'{--max-procs=,-P+}'[run up to max-procs command lines in the background at once]'
+  '(--no-run-if-empty, -r)'{--no-run-if-empty,-r}'[do nothing if there are no input arguments before the eof-str]'
+  '(--null, -0)'{--null,-0}'[split each input-arg at null bytes, for xargs compatibility]'
+  '(--replace, -i)'{--replace=,-i}'[substitute replace-str in the initial-args by each initial-arg]'
+  '(--verbose, -t)'{--verbose,-t}'[print each command line to stderr before executing it]'
+  '--version[print the version number of zargs and exit]'
 )
 
 _arguments -S -s $arguments[@]