Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] _zstat: Don't offer -o after -s, since -s is ignored when both -s and -o are specified.
- X-seq: zsh-workers 49449
- From: Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH] _zstat: Don't offer -o after -s, since -s is ignored when both -s and -o are specified.
- Date: Sun, 26 Sep 2021 08:45:06 +0000
- Archived-at: <https://zsh.org/workers/49449>
- List-id: <zsh-workers.zsh.org>
---
Completion/Unix/Command/_stat | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Completion/Unix/Command/_stat b/Completion/Unix/Command/_stat
index 03b4552de..03abe88a3 100644
--- a/Completion/Unix/Command/_stat
+++ b/Completion/Unix/Command/_stat
@@ -29,7 +29,7 @@ case $variant in
'(-n)-N[never show names of files]'
'-o[print file modes in octal rather than decimal]'
'-r[print raw data]'
- '-s[print mode, UID, GID, and times as strings]'
+ '(-o)-s[print mode, UID, GID, and times as strings]'
'(-T)-t[always show type names]'
'(-t)-T[never show type names]'
'*: :_files'
Messages sorted by:
Reverse Date,
Date,
Thread,
Author