Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] docs bugfix: glob qualifiers
- X-seq: zsh-workers 33883
- From: Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH] docs bugfix: glob qualifiers
- Date: Sat, 6 Dec 2014 10:55:30 +0000
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= daniel.shahaf.name; h=x-sasl-enc:date:from:to:subject:message-id :mime-version:content-type; s=mesmtp; bh=stGxtnmweHCspWWMB6m/LHz 3acU=; b=l+lEhmlTcObo88LLVdkqAlu9CAhgDUh5f5MPAh+2kA1IXYOFVisgyWx xcH/D2LH36raQFXc5Zor9wXFNFJ3l1EC5GDZXoSlhSoUHAnVvIJYbMObp9YuOsaI 4SSV46DE/HGetAlAGtKUmKuFJAssmf1lhBJOiPTGZW8q2MlZu5wg=
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=x-sasl-enc:date:from:to:subject :message-id:mime-version:content-type; s=smtpout; bh=stGxtnmweHC spWWMB6m/LHz3acU=; b=jM+ReLluzRwvuhitm6940MCSMlxLGwsTG9RtkUpHd9I PwWyesiblcsHMaAMTWCmvpDVGIQc/3uKQrJMbdo+J1UFfHTA9F4TdZO5bSTkOWdJ O3H8vjdsvLJPjCNb0xi6/uh5AJO5D7Y48UrDTFlSiI2xuzGx+xWSC2IENlVF/vW8 =
- 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
The (*) qualifier was underdocumented. While there, grammar the completion of
the (p) qualifier.
diff --git a/Doc/Zsh/expn.yo b/Doc/Zsh/expn.yo
index 5ed78f0..8728803 100644
--- a/Doc/Zsh/expn.yo
+++ b/Doc/Zsh/expn.yo
@@ -2388,7 +2388,7 @@ item(tt(p))(
named pipes (FIFOs)
)
item(tt(*))(
-executable plain files (0100)
+executable plain files (0100 or 0010 or 0001)
)
item(tt(%))(
device files (character or block special)
diff --git a/Completion/Zsh/Type/_globquals b/Completion/Zsh/Type/_globquals
index 37db161..042b274 100644
--- a/Completion/Zsh/Type/_globquals
+++ b/Completion/Zsh/Type/_globquals
@@ -213,7 +213,7 @@ case $state in
".:plain files"
"@:symbolic links"
"=:sockets"
- "p:name pipes (FIFOS)"
+ "p:named pipes (FIFOs)"
"*:executable plain files"
"%:device files"
"r:owner-readable"
Messages sorted by:
Reverse Date,
Date,
Thread,
Author