mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
36 lines
2 KiB
Text
36 lines
2 KiB
Text
#compdef grind
|
|
#
|
|
# this is zsh completion function file.
|
|
# generated by genzshcomp(ver: 0.5.1)
|
|
#
|
|
|
|
typeset -A opt_args
|
|
local context state line
|
|
|
|
_arguments -s -S \
|
|
"-h[show this help message and exit]:" \
|
|
"--help[show this help message and exit]:" \
|
|
"--no-skip-hidden-files[do not skip .hidden files]" \
|
|
"-s[do not skip .hidden files]" \
|
|
"--skip-hidden-files[do skip .hidden files]" \
|
|
"--no-skip-backup-files[do not skip backup~ files \[deprecated; edit --skip- exts\]]" \
|
|
"-b[do not skip backup~ files \[deprecated; edit --skip- exts\]]" \
|
|
"--skip-backup-files[do skip backup~ files \[default\] \[deprecated; edit --skip-exts\]]" \
|
|
"--no-skip-hidden-dirs[do not skip .hidden directories]" \
|
|
"-S[do not skip .hidden directories]" \
|
|
"--skip-hidden-dirs[do skip .hidden directories]" \
|
|
"--skip-dirs[comma-separated list of directory names to skip \[default='CVS,RCS,.svn,.hg,.bzr,build,dist'\]]::SKIP_DIRS:_files" \
|
|
"-d[comma-separated list of directory names to skip \[default='CVS,RCS,.svn,.hg,.bzr,build,dist'\]]::SKIP_DIRS:_files" \
|
|
"--no-skip-dirs[do not skip any directories]" \
|
|
"-D[do not skip any directories]" \
|
|
"--skip-exts[comma-separated list of file extensions to skip \[defau lt='.pyc,.pyo,.so,.o,.a,.tgz,.tar.gz,.rar,.zip,~,#,.ba k,.png,.jpg,.gif,.bmp,.tif,.tiff,.pyd,.dll,.exe,.obj,. lib'\]]::SKIP_EXTS:_files" \
|
|
"-e[comma-separated list of file extensions to skip \[defau lt='.pyc,.pyo,.so,.o,.a,.tgz,.tar.gz,.rar,.zip,~,#,.ba k,.png,.jpg,.gif,.bmp,.tif,.tiff,.pyd,.dll,.exe,.obj,. lib'\]]::SKIP_EXTS:_files" \
|
|
"--no-skip-exts[do not skip any file extensions]" \
|
|
"-E[do not skip any file extensions]" \
|
|
"--no-follow[do not follow symlinks to directories and files \[default\]]" \
|
|
"--follow[follow symlinks to directories and files]" \
|
|
"--null-separated[print the filenames separated by NULs]" \
|
|
"-0[print the filenames separated by NULs]" \
|
|
"--dirs[the directories to start from]::DIRS:_files" \
|
|
"--sys-path[search the directories on sys.path t-dev@mail.enthought.com>.]" \
|
|
"*::args:_files"
|