about summary refs log tree commit diff
path: root/Completion/BSD/Type/_file_flags
diff options
context:
space:
mode:
authorJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2018-11-07 20:57:59 +0900
committerJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2018-11-07 21:01:54 +0900
commite5465c04344cecca564c6c2def325d3806ce9278 (patch)
tree7f2ae4d132fec01899fe07adbb5935d0b5e5b4d0 /Completion/BSD/Type/_file_flags
parentc8ce1fe4c1e37e3db402570e7ced2aa413323792 (diff)
downloadzsh-e5465c04344cecca564c6c2def325d3806ce9278.tar.gz
zsh-e5465c04344cecca564c6c2def325d3806ce9278.tar.xz
zsh-e5465c04344cecca564c6c2def325d3806ce9278.zip
43761: update five completion functions for darwin
Diffstat (limited to 'Completion/BSD/Type/_file_flags')
-rw-r--r--Completion/BSD/Type/_file_flags6
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/BSD/Type/_file_flags b/Completion/BSD/Type/_file_flags
index 95044121c..202a46c4a 100644
--- a/Completion/BSD/Type/_file_flags
+++ b/Completion/BSD/Type/_file_flags
@@ -7,6 +7,7 @@ local -a context line state state_descr copts=( "${@}" ) flags flag_descs
 local -A val_args
 
 flag_descs+=(
+  nodump nodump
   uappnd 'user append-only'
   uchg 'user immutable'
 )
@@ -14,7 +15,6 @@ flag_descs+=(
 if (( su )); then
   flag_descs+=(
     arch archived
-    nodump nodump
     sappnd 'system append-only'
     schg 'system immutable'
   )
@@ -36,12 +36,12 @@ if [[ $OSTYPE = (darwin|dragonfly|freebsd|netbsd)* ]]; then
 
   if [[ $OSTYPE = dragonfly* ]]; then
     flag_descs+=(
-      cache XXX
+      cache cache
       nouhistory 'user nohistory'
     )
 
     (( su )) && flag_descs+=(
-      noscache XXX
+      noscache noscache
       noshistory 'system nohistory'
     )
   fi