Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH 1/3] _subversion: Make _svn_conflicts not offer all files in the directory.
- X-seq: zsh-workers 44946
- From: Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH 1/3] _subversion: Make _svn_conflicts not offer all files in the directory.
- Date: Fri, 29 Nov 2019 01:45:17 +0000
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= daniel.shahaf.name; h=from:to:subject:date:message-id; s=fm1; bh=/E+CPHBgjhO9Vg6LEsTTifGpoNsZ5ji78NJp9OFGZ5o=; b=OWI0lniO4XTN fk/LnjLC0gtEYoy/fCMVDXUGRVfIY2fcwqOi2DnipBwcLfGH2Y9n3dmUbsqEDinU xrXvaoH1rOLmXsZm6a4htAl/M/ffBztHxCvBP2+IQj1r82QPSH8iS5hZ/6TGzhyP AJVB6fIZanjgJeOA5HRUUmk6Jq0+gWARv1OZ+FOikPqKKV+v+KqbTVZUmHZjgy0K GIBKmJrmLxx2q4ZeuP70cJkPV6iOAp2m9l2falILjYGlzWGZmXb0jPGq0b7i8zK+ ybvXEWUDeufirTI/bZCvRyQYLam2MuhKTNJOkvrnSibRQFTyXn4EdpxF1A3yllm1 qeJUST559A==
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=date:from:message-id:subject:to :x-me-proxy:x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s= fm1; bh=/E+CPHBgjhO9Vg6LEsTTifGpoNsZ5ji78NJp9OFGZ5o=; b=rkUC3Mmk MDuat4mWG2owHIXm7e10vwQcXoQjIcU5pqnNQsojdyWTOizXqGXbfwq348mzt5MT JtfuRRUDiAEqTN66vrz03HbVyxBdJJ85DT1z0+QUL7KVcj4936qa9AP+8Df88CrE I4w50aFb0VNnQQXDvpk0Zoy3b6rfTTp32Zamjd4xp/hpC0PM9XifXciJW7e6Ib2T M9T4aT4sDokUZe18ZxLmRkzs539zcuvODo6cfDM2b1OlMHsmA+QtZ3u9kySShr0J HG96DGBk/oWDqCA2dDhLRjLnPoaaBjoZphE3REm9rlqezG3U7vy8vcN8q+uTbNbw GYQDoZ4ytEk74Q==
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
---
Completion/Unix/Command/_subversion | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Completion/Unix/Command/_subversion b/Completion/Unix/Command/_subversion
index b5532b101..04a8da0bf 100644
--- a/Completion/Unix/Command/_subversion
+++ b/Completion/Unix/Command/_subversion
@@ -337,7 +337,7 @@ _svn_controlled() {
(( $+functions[_svn_conflicts] )) ||
_svn_conflicts() {
- [ -n $REPLY.(mine|r<->)(N[1]) ]
+ () { (( $# > 0 )) } $REPLY.(mine|r<->)(NY1)
}
(( $+functions[_svn_deletedfiles] )) ||
Messages sorted by:
Reverse Date,
Date,
Thread,
Author