diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2008-04-20 16:28:30 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-04-20 16:28:30 +0000 |
| commit | dcb2cc0e8b4c50b57eff9fea889acaeafb1c1569 (patch) | |
| tree | e34cba34675ad57314a7d8ffc5321546535ff25e | |
| parent | 24851: support colour codes for from current GNU ls (diff) | |
| download | zsh-dcb2cc0e8b4c50b57eff9fea889acaeafb1c1569.tar zsh-dcb2cc0e8b4c50b57eff9fea889acaeafb1c1569.tar.gz zsh-dcb2cc0e8b4c50b57eff9fea889acaeafb1c1569.tar.bz2 zsh-dcb2cc0e8b4c50b57eff9fea889acaeafb1c1569.tar.lz zsh-dcb2cc0e8b4c50b57eff9fea889acaeafb1c1569.tar.xz zsh-dcb2cc0e8b4c50b57eff9fea889acaeafb1c1569.tar.zst zsh-dcb2cc0e8b4c50b57eff9fea889acaeafb1c1569.zip | |
William Scott: users/12793: extra chflags
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Completion/BSD/Command/_chflags | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2008-04-20 Peter Stephenson <p.w.stephenson@ntlworld.com> + + * users/12793: William Scott: Completion/BSD/Command/_chflags: + hidden/nohidden flags. + 2008-04-20 Andrey Borzenkov <bor@zsh.org> * 24851: Doc/Zsh/mod_complist.yo, Src/Zle/complist.c: support diff --git a/Completion/BSD/Command/_chflags b/Completion/BSD/Command/_chflags index 6d5b6e973..c9f26249d 100644 --- a/Completion/BSD/Command/_chflags +++ b/Completion/BSD/Command/_chflags @@ -29,6 +29,8 @@ if [[ $OSTYPE = (freebsd|dragonfly|darwin)* ]]; then flags=( $flags[@] '(nouunlnk)uunlnk[set the user undeletable flag]' '(uunlnk)nouunlnk[unset the user undeletable flag]' + '(nohidden)hidden[set the hidden flag]' + '(hidden)nohidden[unset the hidden flag]' ) (( EUID )) || flags=( $flags[@] '(nosunlnk)sunlnk[set the system undeletable flag]' |
