Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

[PATCH] docs bugfix: glob qualifiers



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