diff options
author | Oliver Kiddle <opk@zsh.org> | 2023-11-17 18:13:41 +0100 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2023-11-17 18:13:41 +0100 |
commit | 6306dcfaa52237fbaa76eafe7bc396e68eda66ca (patch) | |
tree | 818c8bbcf932431e4d28bc5f14fc05cdd616e7b7 /Completion/Unix/Command/_chown | |
parent | ddfc81a2b81e19c13f60bfff30f28ed520df8f57 (diff) | |
download | zsh-6306dcfaa52237fbaa76eafe7bc396e68eda66ca.tar.gz zsh-6306dcfaa52237fbaa76eafe7bc396e68eda66ca.zip |
52303: updates to completions for macOS 13
Diffstat (limited to 'Completion/Unix/Command/_chown')
-rw-r--r-- | Completion/Unix/Command/_chown | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_chown b/Completion/Unix/Command/_chown index 9ebbf7bab..4362d6e75 100644 --- a/Completion/Unix/Command/_chown +++ b/Completion/Unix/Command/_chown @@ -43,7 +43,7 @@ case "$variant" in '(-H -L -P)-P[do not follow symlinks (default)]' ) ;| - dragonfly*|freebsd*) + dragonfly*|freebsd*|darwin*) args+=( "-x[don't traverse file systems]" ) @@ -63,6 +63,11 @@ case "$variant" in '-s[owner and/or group are Windows SID strings]' ) ;; + darwin*) + args+=( + '-n[interpret user and group as numeric, avoiding name lookups]' + ) + ;; esac (( $+words[(r)--reference*] )) || args+=( '(--reference)1: :->owner' ) |