Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] Minor completion fix for pasted arguments
- X-seq: zsh-workers 35066
- From: Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH] Minor completion fix for pasted arguments
- Date: Sat, 9 May 2015 15:10:09 +0000
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= daniel.shahaf.name; h=content-type:date:from:message-id :mime-version:subject:to:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=fgZ cFyBUPhFKfyQfMp/DHMC+CNk=; b=GWexWwZFSro5W86Bisd0+y0iaJIBoRY/h8M XhYaBNa124ZzjXIgiiX/g5sNgnvu/Gg/GoPx8wTN1Xld3l7LfL9HgXziw7TL8MSZ BJJBmDRgbGUMKXL1R9forFr8myIS1RCmmbDOJO+J5ceecdzJl6jDuG1gyPKXtXps tXmIrqrM=
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:message-id :mime-version:subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=fg ZcFyBUPhFKfyQfMp/DHMC+CNk=; b=G6P1DnT82O+blAlX1ht9EEu/QGa+j9nDoZ EK1BDwUKA+XlsBpTroaIu0VGhLZzRl8XntkIFZ6zb/G0dVYPkzMiNZi6CQAWsbvD +YkO5rnMQWLbopupl14amrHBEguZvvTU6L8PAldVznRlrVmR3C+4GM7zwt4UxCR2 id0OeEUCg=
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
diff --git a/Completion/Unix/Command/_python b/Completion/Unix/Command/_python
index dedb9ce..2fb4a91 100644
--- a/Completion/Unix/Command/_python
+++ b/Completion/Unix/Command/_python
@@ -31,7 +31,7 @@ _arguments -C -s -S "$args[@]" \
'-E[ignore PYTHON* environment variables (such as PYTHONPATH)]' \
'(1 * -)-h[display help information]' \
'-i[inspect interactively after running script]' \
- '(1 -)-m[run library module as a script (terminates option list)]:module:_python_modules' \
+ '(1 -)-m+[run library module as a script (terminates option list)]:module:_python_modules' \
'-O[optimize generated bytecode slightly]' \
'-OO[remove doc-strings in addition to the -O optimizations]' \
"-s[don't add user site directory to sys.path]" \
diff --git a/Completion/Unix/Command/_subversion b/Completion/Unix/Command/_subversion
index 597f232..188a813 100644
--- a/Completion/Unix/Command/_subversion
+++ b/Completion/Unix/Command/_subversion
@@ -96,7 +96,7 @@ _svn () {
)
;;
(mergeinfo)
- args[(r)--show-revs:arg:]=( '--show-revs:revisions:(merged eligible)' )
+ args[(r)--show-revs:arg:]=( '--show-revs=:revisions:(merged eligible)' )
;;
(propget|propedit)
args+=(
Messages sorted by:
Reverse Date,
Date,
Thread,
Author