diff options
| author | Oliver Kiddle <opk@zsh.org> | 2016-08-19 18:00:07 +0200 |
|---|---|---|
| committer | Oliver Kiddle <opk@zsh.org> | 2016-08-19 18:00:07 +0200 |
| commit | 580698bc7136454941dd6bbc2ca70f240fabc6b7 (patch) | |
| tree | 5f64057da3d5482c4e7f2c8242bfe2bc7de62299 /Completion/Unix/Command/_tree | |
| parent | unposted: _canonical_paths: Port docstring changes from 39044. (diff) | |
| download | zsh-580698bc7136454941dd6bbc2ca70f240fabc6b7.tar zsh-580698bc7136454941dd6bbc2ca70f240fabc6b7.tar.gz zsh-580698bc7136454941dd6bbc2ca70f240fabc6b7.tar.bz2 zsh-580698bc7136454941dd6bbc2ca70f240fabc6b7.tar.lz zsh-580698bc7136454941dd6bbc2ca70f240fabc6b7.tar.xz zsh-580698bc7136454941dd6bbc2ca70f240fabc6b7.tar.zst zsh-580698bc7136454941dd6bbc2ca70f240fabc6b7.zip | |
39067: update options to correspond to latest versions of software in various functions
Diffstat (limited to 'Completion/Unix/Command/_tree')
| -rw-r--r-- | Completion/Unix/Command/_tree | 101 |
1 files changed, 52 insertions, 49 deletions
diff --git a/Completion/Unix/Command/_tree b/Completion/Unix/Command/_tree index d759409b5..4fd9aed44 100644 --- a/Completion/Unix/Command/_tree +++ b/Completion/Unix/Command/_tree @@ -1,51 +1,54 @@ #compdef tree -# Completions for tree, version 1.5.3 -# Tree is available at -# http://mama.indstate.edu/users/ice/tree/ - -typeset -a opts - -opts=( -'--help[verbose usage listing]' -'--version[version of tree]' -'-a[show all files, including hidden ones]' -'-d[list directories only]' -'-f[print full path prefix for each file]' -'-i[do not print indentation lines]' -'-l[follow symlinks that point to directories]' -'-x[stay on current filesystem]' -'-P[list only files matching a pattern]:pattern:' -'-I[do not list files matching a pattern]:pattern:' -'--noreport[do not print file and directory report at end]' -'-p[print file type and permissions, like ls -l]' -'-s[print size of each file in bytes]' -'-h[print human readable file size]' -'-u[print username]' -'-g[print group name]' -'-D[print date of last modification]' -'--inodes[print inode numbers]' -'--device[print device number to which file or directory belongs]' -'-F[append descriptive character to end, like ls -F]' -'-q[print non-printable characters as question mark, not caret]' -'-N[print non-printable characters as is, not as caret]' -'-v[sort the output as version]' -'-r[sort output in reverse alphabetic order]' -'-t[sort output by last modification time instead of alphabetically]' -'--dirsfirst[list directories before files]' -'-n[turn colorization off always, over-ridden by the -C option]' -'-C[turn colorization on always]' -'-A[turn on ANSI line graphics hack when printing indentation lines]' -'-S[turn on ASCII line graphics]' -'-L[max display depth of tree]:level:' -'--filelimit[do not descend directories with more than number of entries]:number:' -'-R[recursively cross down the tree and execute tree again]' -'-H[turn on HTML output]' -'-T[title for HTML output]' -'--charset[character set for HTML and for line drawing]:charset:' -'--nolinks[turn off hyperlinks in HTML output]' -'-o[send output to file]:filename:_files' -'*:directory:_files -/' -) - -_arguments $opts +_arguments -s -S \ + '-a[show all files, including hidden ones]' \ + '-d[list directories only]' \ + '-l[follow symlinks that point to directories]' \ + '-f[print full path prefix for each file]' \ + '-x[stay on current filesystem]' \ + '-L[specify max tree depth to descend]:level' \ + '-R[recursively cross down the tree and execute tree again]' \ + '-P[only list files matching a pattern]:pattern:_files' \ + "-I[don't list files matching a pattern]:pattern:_files" \ + '--ignore-case[ignore case when pattern matching]' \ + '--matchdirs[include directory names in -P pattern matching]' \ + '--noreport[omit file and directory report at end]' \ |
