summaryrefslogtreecommitdiff
path: root/Completion/Zsh/Function/_zargs
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2021-07-09 00:32:37 +0200
committerOliver Kiddle <opk@zsh.org>2021-07-09 00:32:37 +0200
commitefec6bbdb55199430dec0a003e5dc8d293de4cff (patch)
tree7eda8bd67c569a086337ad07503ba0eabd66be89 /Completion/Zsh/Function/_zargs
parente6fdd35a83881a957ac206b4e128886d07f37c71 (diff)
downloadzsh-efec6bbdb55199430dec0a003e5dc8d293de4cff.tar.gz
zsh-efec6bbdb55199430dec0a003e5dc8d293de4cff.zip
49151: remove commas erroneously included in _arguments exclusion lists
Diffstat (limited to 'Completion/Zsh/Function/_zargs')
-rw-r--r--Completion/Zsh/Function/_zargs20
1 files changed, 10 insertions, 10 deletions
diff --git a/Completion/Zsh/Function/_zargs b/Completion/Zsh/Function/_zargs
index f974ab646..94a35e3a5 100644
--- a/Completion/Zsh/Function/_zargs
+++ b/Completion/Zsh/Function/_zargs
@@ -18,17 +18,17 @@ case $numeofs in
#zargs 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]'
+ '(--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]'
+ '(--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[@] && ret=0