diff options
author | dana <dana@dana.is> | 2018-01-03 18:14:05 -0600 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2018-01-04 11:50:50 +0100 |
commit | 21a09a14181851e931f9b2b65704044eed169fb7 (patch) | |
tree | 5f586e42fa22381ec3302ed27ee77d6ff18f8fbc /Completion/Unix/Command/_chmod | |
parent | c789efbaf0db016256d58c685c5586d7a684170d (diff) | |
download | zsh-21a09a14181851e931f9b2b65704044eed169fb7.tar.gz zsh-21a09a14181851e931f9b2b65704044eed169fb7.tar.xz zsh-21a09a14181851e931f9b2b65704044eed169fb7.zip |
42214: use less general names on new functions for completing file flags and modes
Diffstat (limited to 'Completion/Unix/Command/_chmod')
-rw-r--r-- | Completion/Unix/Command/_chmod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_chmod b/Completion/Unix/Command/_chmod index 80c6f33ca..af64b9eb9 100644 --- a/Completion/Unix/Command/_chmod +++ b/Completion/Unix/Command/_chmod @@ -3,7 +3,7 @@ local curcontext="$curcontext" state line expl ret=1 local -a args privs -args=( '*: :->files' '1: :_modes' ) +args=( '*: :->files' '1: :_file_modes' ) if _pick_variant gnu=Free\ Soft unix --version; then args+=( |