mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
62 lines
4.1 KiB
Text
62 lines
4.1 KiB
Text
#compdef grin
|
|
#
|
|
# 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]:" \
|
|
"--ignore-case[ignore case in the regex]" \
|
|
"-i[ignore case in the regex]" \
|
|
"--after-context[the number of lines of context to show after the match \[default=0\]]::AFTER_CONTEXT:_files" \
|
|
"-A[the number of lines of context to show after the match \[default=0\]]::AFTER_CONTEXT:_files" \
|
|
"--before-context[the number of lines of context to show before the match \[default=0\]]::BEFORE_CONTEXT:_files" \
|
|
"-B[the number of lines of context to show before the match \[default=0\]]::BEFORE_CONTEXT:_files" \
|
|
"--context[CONTEXT the number of lines of context to show on either side of the match]::CONTEXT:_files" \
|
|
"-C[CONTEXT the number of lines of context to show on either side of the match]::CONTEXT:_files" \
|
|
"--include[INCLUDE only search in files matching this glob \[default='*'\]]::INCLUDE:_files" \
|
|
"-I[INCLUDE only search in files matching this glob \[default='*'\]]::INCLUDE:_files" \
|
|
"--line-number[show the line numbers \[default\]]" \
|
|
"-n[show the line numbers \[default\]]" \
|
|
"--no-line-number[do not show the line numbers]" \
|
|
"-N[do not show the line numbers]" \
|
|
"--with-filename[show the filenames of files that match \[default\]]" \
|
|
"-H[show the filenames of files that match \[default\]]" \
|
|
"--without-filename[do not show the filenames of files that match]" \
|
|
"--emacs[print the filename with every match for easier parsing by e.g. Emacs]" \
|
|
"--files-with-matches[show only the filenames and not the texts of the matches]" \
|
|
"-l[show only the filenames and not the texts of the matches]" \
|
|
"--files-without-matches[show the matches with the filenames]" \
|
|
"-L[show the matches with the filenames]" \
|
|
"--no-color[do not use colorized output \[default if piping the output\]]" \
|
|
"--use-color[use colorized output \[default if outputting to a terminal\]]" \
|
|
"--force-color[always use colorized output even when piping to something that may not be able to handle it]" \
|
|
"--no-skip-hidden-files[do not skip .hidden files]" \
|
|
"-s[do not skip .hidden files]" \
|
|
"--skip-hidden-files[do skip .hidden files \[default\]]" \
|
|
"--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 \[default\]]" \
|
|
"--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]" \
|
|
"--files-from-file[read files to search from a file, one per line; - for stdin]::FILE:_files" \
|
|
"-f[read files to search from a file, one per line; - for stdin]::FILE:_files" \
|
|
"--null-separated[filenames specified in --files-from-file are separated by NULs]" \
|
|
"-0[filenames specified in --files-from-file are separated by NULs]" \
|
|
"--sys-path[search the directories on sys.path t-dev@mail.enthought.com>.]" \
|
|
"*::args:_files"
|