Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] Unbalanced parenthesis in _urls
- X-seq: zsh-workers 35232
 
- From: İsmail Dönmez <ismail@xxxxxxxxx>
 
- To: "Zsh Hackers' List" <zsh-workers@xxxxxxx>
 
- Subject: [PATCH] Unbalanced parenthesis in _urls
 
- Date: Wed, 20 May 2015 15:03:21 +0300
 
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed;        d=donmez.ws; s=www;        h=mime-version:from:date:message-id:subject:to:content-type;        bh=wliiOprWs4dh0EtFY/kq4MrTEq7+7Jv2BFAkcF0b008=;        b=CvDRF61ftu4JLSvPttpI5jnn0QDR/wsL8fKXOGoYJwEUeYATnlSzSKF5bOL7I2zH19         R03Rv41dm0SrNs44gjxA/Np9lxaEL1VwShn5rtHRD8Cd+fSmyCK49hY6rCGbVvCWVa8Q         KsWk64QzWWgowj0qiaR4rgsLfGNQtSoDk0MUg=
 
- 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
 
Another fallout from workers/35168 , patch attached.
ismail
Index: zsh/Completion/Unix/Type/_urls
===================================================================
--- zsh.orig/Completion/Unix/Type/_urls
+++ zsh/Completion/Unix/Type/_urls
@@ -75,7 +75,7 @@ fi
 scheme="$match[1]"
 
 case "$scheme" in
-  http(|s)|(|s)ftp|scp|gopher)
+  (http(|s)|(|s)ftp|scp|gopher)
     if ! compset -P //; then
       _wanted -C "$scheme" prefixes expl 'end of prefix' compadd -S '' "$@" //
       return
Messages sorted by:
Reverse Date,
Date,
Thread,
Author