diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2012-11-16 23:01:06 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2012-11-16 23:01:06 +0000 |
commit | ee040c6ba56a9ed22ed70cf429730cd59ed34954 (patch) | |
tree | e1543faff5d42683bca5ca278c388d7b4c811584 | |
parent | 1f359ae462dc5b19d04706e88195297eb2777d3f (diff) | |
download | zsh-ee040c6ba56a9ed22ed70cf429730cd59ed34954.tar.gz zsh-ee040c6ba56a9ed22ed70cf429730cd59ed34954.tar.xz zsh-ee040c6ba56a9ed22ed70cf429730cd59ed34954.zip |
30802: add new command switches
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | Completion/Unix/Command/_find | 27 |
2 files changed, 27 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog index 36bac2884..9c1b39222 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2012-11-16 Oliver Kiddle <opk@zsh.org> + + * 30802: Completion/Unix/Command/_find: add new command switches + + * 30801: Completion/X/Command/_urxvt, Completion/X/Type/_xft_fonts: + fix font completion for newer fontconfig & update urxvt completion + 2012-11-15 Peter Stephenson <p.w.stephenson@ntlworld.com> * 30789: Doc/Zsh/grammar.yo, Doc/Zsh/options.yo, Src/hist.c, @@ -341,5 +348,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.5761 $ +* $Revision: 1.5762 $ ***************************************************** diff --git a/Completion/Unix/Command/_find b/Completion/Unix/Command/_find index 3c21dcc94..33767c080 100644 --- a/Completion/Unix/Command/_find +++ b/Completion/Unix/Command/_find @@ -1,18 +1,23 @@ #compdef find _arguments \ + '(- *)-help' '(-)--help' \ + '(- *)-version' '(-)--version' \ + '(-L -P)-H[only follow symlinks when resolving command-line arguments]' \ + '(-H -P)-L[follow symlinks]' \ + '(-H -L)-P[never follow symlinks]' \ + '-D[print diagnostics]:deb option:(help tree search stat rates opt exec)' \ + '-O+[enable query optimisation]:level:(1 2 3)' \ '*-daystart' \ - '*-depth' \ + '*-d' '*-depth' \ '*-follow' \ - '*-help' \ - '*-ignore_readdir_race' \ - '*-maxdepth:maximum search depth:' \ - '*-mindepth:minimum search depth:' \ + '(-noignore_readdir_race)-ignore_readdir_race' \ + '*-maxdepth:maximum search depth' \ + '*-mindepth:minimum search depth' \ '*-mount' \ - '*-noignore_readdir_race' \ + '(-ignore_readdir_race)-noignore_readdir_race' \ '*-noleaf' \ - '*-regextype:regexp syntax:(emacs posix-awk posix-basic posix-egrep posix-extended)' \ - '*-version' \ + '-regextype:regexp syntax:(emacs posix-awk posix-basic posix-egrep posix-extended)' \ '*-warn' \ '*-nowarn' \ '*-xdev' \ @@ -27,6 +32,7 @@ _arguments \ '*-newer:file to compare (modification time):_files' \ '*-used:access after inode change (days):' \ '*-empty' \ + '*-executable' \ '*-false' \ '*-fstype:file system type:_file_systems' \ '*-gid:numeric group ID:' \ @@ -48,6 +54,8 @@ _arguments \ '*-nouser' \ '*-nogroup' \ '*-perm:file permission bits:' \ + '*-readable' \ + '*-writable' \ '*-size:file size:' \ '*-samefile:same inode as:_files' \ '*-true' \ @@ -68,4 +76,7 @@ _arguments \ '*-prune' \ '*-quit' \ '*-ls' \ + '*-and' '*-a' \ + '*-or' '*-o' \ + '*-not' \ '*:directory:_files -/' |