l of the potential negation options listed below! if # We also want to list all of these options during testing [[ $_RG_COMPLETE_LIST_ARGS == (1|t*|y*) ]] || # (--[imnp]* => --ignore*, --messages, --no-*, --pcre2-unicode) [[ $PREFIX$SUFFIX == --[imnp]* ]] || zstyle -t ":completion:${curcontext}:" complete-all then no= fi # We make heavy use of argument groups here to prevent the option specs from # growing unwieldy. These aren't supported in zsh <5.4, though, so we'll strip # them out below if necessary. This makes the exclusions inaccurate on those # older versions, but oh well — it's not that big a deal args=( + '(exclusive)' # Misc. fully exclusive options '(: * -)'{-h,--help}'[display help information]' '(: * -)'{-V,--version}'[display version information]' '(: * -)'--pcre2-version'[print the version of PCRE2 used by ripgrep, if available]' + '(buffered)' # buffering options '--line-buffered[force line buffering]' $no"--no-line-buffered[don't force line buffering]" '--block-buffered[force block buffering]' $no"--no-block-buffered[don't force block buffering]" + '(case)' # Case-sensitivity options {-i,--ignore-case}'[search case-insensitively]' {-s,--case-sensitive}'[search case-sensitively]' {-S,--smart-case}'[search case-insensitively if pattern is all lowercase]' + '(context-a)' # Context (after) options '(context-c)'{-A+,--after-context=}'[specify lines to show after each match]:number of lines' + '(context-b)' # Context (before) options '(context-c)'{-B+,--before-context=}'[specify lines to show before each match]:number of lines' + '(context-c)' # Context (combined) options '(context-a context-b)'{-C+,--context=}'[specify lines to show before and after each match]:number of lines' + '(column)' # Column options '--column[show column numbers for matches]' $no"--no-column[don't show column numbers for matches]" + '(count)' # Counting options {-c,--count}'[only show count of matching lines for each file]' '--count-matches[only show count of individual matches for each file]' '--include-zero[include files with zero matches in summary]' $no"--no-include-zero[don't include files with zero matches in summary]" + '(encoding)' # Encoding options {-E+,--encoding=}'[specify text encoding of files to search]: :_rg_encodings' $no'--no-encoding[use default text encoding]' + '(engine)' # Engine choice options '--engine=[select which regex engine to use]:when:(( default\:"use default engine" pcre2\:"identical to --pcre2" auto\:"identical to --auto-hybrid-regex" ))' + file # File-input options '(1)*'{-f+,--file=}'[specify file containing patterns to search for]: :_files' + '(file-match)' # Files with/without match options '(stats)'{-l,--files-with-matches}'[only show names of files with matches]' '(stats)--files-without-match[only show names of files without matches]' + '(file-name)' # File-name options {-H,--with-filename}'[show file name for matches]' {-I,--no-filename}"[don't show file name for matches]" + '(file-system)' # File system options "--one-file-system[don't descend into directories on other file systems]" $no'--no-one-file-system[descend into directories on other file systems]' + '(fixed)' # Fixed-string options {-F,--fixed-strings}'[treat pattern as literal string instead of regular expression]' $no"--no-fixed-strings[don't treat pattern as literal string]" + '(follow)' # Symlink-following options {-L,--follow}'[follow symlinks]' $no"--no-follow[don't follow symlinks]" + '(generate)' # Options for generating ancillary data '--generate=[generate man page or completion scripts]:when:(( man\:"man page" complete-bash\:"shell completions for bash" complete-zsh\:"shell completions for zsh" complete-fish\:"shell completions for fish" complete-powershell\:"shell completions for PowerShell" ))' + glob # File-glob options '*'{-g+,--glob=}'[include/exclude files matching specified glob]:glob' '*--iglob=[include/exclude files matching specified case-insensitive glob]:glob' + '(glob-case-insensitive)' # File-glob case sensitivity options '--glob-case-insensitive[treat -g/--glob patterns case insensitively]' $no'--no-glob-case-insensitive[treat -g/--glob patterns case sensitively]' + '(heading)' # Heading options '(pretty-vimgrep)--heading[show matches grouped by file name]' "(pretty-vimgrep)--no-heading[don't show matches grouped by file name]" + '(hidden)' # Hidden-file options {-.,--hidden}'[search hidden files and directories]' $no"--no-hidden[don't search hidden files and directories]" + '(hybrid)' # hybrid regex options '--auto-hybrid-regex[DEPRECATED: dynamically use PCRE2 if necessary]' $no"--no-auto-hybrid-regex[DEPRECATED: don't dynamically use PCRE2 if necessary]" + '(ignore)' # Ignore-file options "(--no-ignore-global --no-ignore-parent --no-ignore-vcs --no-ignore-dot)--no-ignore[don't respect ignore files]" $no'(--ignore-global --ignore-parent --ignore-vcs --ignore-dot)--ignore[respect ignore files]' + '(ignore-file-case-insensitive)' # Ignore-file case sensitivity options '--ignore-file-case-insensitive[process ignore files case insensitively]' $no'--no-ignore-file-case-insensitive[process ignore files case sensitively]' + '(ignore-exclude)' # Local exclude (ignore)-file options "--no-ignore-exclude[don't respect local exclude (ignore) files]" $no'--ignore-exclude[respect local exclude (ignore) files]' + '(ignore-global)' # Global ignore-file options "--no-ignore-global[don't respect global ignore files]" $no'--ignore-global[respect global ignore files]' + '(ignore-parent)' # Parent ignore-file options "--no-ignore-parent[don't respect ignore files in parent directories]" $no'--ignore-parent[respect ignore files in parent directories]' + '(ignore-vcs)' # VCS ignore-file options "--no-ignore-vcs[don't respect version control ignore files]" $no'--ignore-vcs[respect version control ignore files]' + '(require-git)' # git specific settings "--no-require-git[don't require git repository to respect gitignore rules]" $no'--require-git[require git repository to respect gitignore rules]' + '(ignore-dot)' # .ignore options "--no-ignore-dot[don't respect .ignore files]" $no'--ignore-dot[respect .ignore files]' + '(ignore-files)' # custom global ignore file options "--no-ignore-files[don't respect --ignore-file flags]" $no'--ignore-files[respect --ignore-file files]' + '(json)' # JSON options '--json[output results in JSON Lines format]' $no"--no-json[don't output results in JSON Lines format]" + '(line-number)' # Line-number options {-n,--line-number}'[show line numbers for matches]' {-N,--no-line-number}"[don't show line numbers for matches]" + '(line-terminator)' # Line-terminator options '--crlf[use CRLF as line terminator]' $no"--no-crlf[don't use CRLF as line terminator]" '(text)--null-data[use NUL as line terminator]' + '(max-columns-preview)' # max column preview options '--max-columns-preview[show preview for long lines (with -M)]' $no"--no-max-columns-preview[don't show preview for long lines (with -M)]" + '(max-depth)' # Directory-depth options {-d,--max-depth}'[specify max number of directories to descend]:number of directories' '--maxdepth=[alias for --max-depth]:number of directories' '!--maxdepth=:number of directories' + '(messages)' # Error-message options '(--no-ignore-messages)--no-messages[suppress some error messages]' $no"--messages[don't suppress error messages affected by --no-messages]" + '(messages-ignore)' # Ignore-error message options "--no-ignore-messages[don't show ignore-file parse error messages]" $no'--ignore-messages[show ignore-file parse error messages]' + '(mmap)' # mmap options '--mmap[search using memory maps when possible]' "--no-mmap[don't search using memory maps]" + '(multiline)' # Multiline options {-U,--multiline}'[permit matching across multiple lines]' $no'(multiline-dotall)--no-multiline[restrict matches to at most one line each]' + '(multiline-dotall)' # Multiline DOTALL options '(--no-multiline)--multiline-dotall[allow "." to match newline (with -U)]' $no"(--no-multiline)--no-multiline-dotall[don't allow \".\" to match newline (with -U)]" + '(only)' # Only-match options {-o,--only-matching}'[show only matching part of each line]' + '(passthru)' # Pass-through options '(--vimgrep)--passthru[show both matching and non-matching lines]' '(--vimgrep)--passthrough[alias for --passthru]' + '(pcre2)' # PCRE2 options {-P,--pcre2}'[enable matching with PCRE2]' $no'(pcre2-unicode)--no-pcre2[disable matching with PCRE2]' + '(pcre2-unicode)' # PCRE2 Unicode options $no'(--no-pcre2 --no-pcre2-unicode)--pcre2-unicode[DEPRECATED: enable PCRE2 Unicode mode (with -P)]' '(--no-pcre2 --pcre2-unicode)--no-pcre2-unicode[DEPRECATED: disable PCRE2 Unicode mode (with -P)]' + '(pre)' # Preprocessing options '(-z --search-zip)--pre=[specify preprocessor utility]:preprocessor utility:_command_names -e' $no'--no-pre[disable preprocessor utility]' + pre-glob # Preprocessing glob options '*--pre-glob[include/exclude files for preprocessing with --pre]' + '(pretty-vimgrep)' # Pretty/vimgrep display options '(heading)'{-p,--pretty}'[alias for --color=always --heading -n]' '(heading passthru)--vimgrep[show results in vim-compatible format]' + regexp # Explicit pattern options '(1 file)*'{-e+,--regexp=}'[specify pattern]:pattern' + '(replace)' # Replacement options {-r+,--replace=}'[specify string used to replace matches]:replace string' + '(sort)' # File-sorting options '(threads)--sort=[sort results in ascending order (disables parallelism)]:sort method:(( none\:"no sorting" path\:"sort by file path" modified\:"sort by last modified time" accessed\:"sort by last accessed time" created\:"sort by creation time" ))' '(threads)--sortr=[sort results in descending order (disables parallelism)]:sort method:(( none\:"no sorting" path\:"sort by file path" modified\:"sort by last modified time" accessed\:"sort by last accessed time" created\:"sort by creation time" ))' '(threads)--sort-files[DEPRECATED: sort results by file path (disables parallelism)]' $no"--no-sort-files[DEPRECATED: do not sort results]" + '(stats)' # Statistics options '(--files file-match)--stats[show search statistics]' $no"--no-stats[don't show search statistics]" + '(text)' # Binary-search options {-a,--text}'[search binary files as if they were text]' "--binary[search binary files, don't print binary data]" $no"--no-binary[don't search binary files]" $no"(--null-data)--no-text[don't search binary files as if they were text]" + '(threads)' # Thread-count options '(sort)'{-j+,--threads=}'[specify approximate number of threads to use]:number of threads' + '(trim)' # Trim options '--trim[trim any ASCII whitespace prefix from each line]' $no"--no-trim[don't trim ASCII whitespace prefix from each line]" + type # Type options '*'{-t+,--type=}'[only search files matching specified type]: :_rg_types' '*--type-add=[add new glob for specified file type]: :->typespec' '*--type-clear=[clear globs previously defined for specified file type]: :_rg_types' # This should actually be exclusive with everything but other type options '(: *)--type-list[show all supported file types and their associated globs]' '*'{-T+,--type-not=}"[don't search files matching specified file type]: :_rg_types" + '(word-line)' # Whole-word/line match options {-w,--word-regexp}'[only show matches surrounded by word boundaries]' {-x,--line-regexp}'[only show matches surrounded by line boundaries]' + '(unicode)' # Unicode options $no'--unicode[enable Unicode mode]' '--no-unicode[disable Unicode mode]' + '(zip)' # Compression options '(--pre)'{-z,--search-zip}'[search in compressed files]' $no"--no-search-zip[don't search in compressed files]" + misc # Other options — no need to separate these at the moment '(-b --byte-offset)'{-b,--byte-offset}'[show 0-based byte offset for each matching line]' $no"--no-byte-offset[don't show byte offsets for each matching line]" '--color=[specify when to use colors in output]:when:(( never\:"never use colors" auto\:"use colors or not based on stdout, TERM, etc." always\:"always use colors" ansi\:"always use ANSI colors (even on Windows)" ))' '*--colors=[specify color and style settings]: :->colorspec' '--context-separator=[specify string used to separate non-continuous context lines in output]:separator' $no"--no-context-separator[don't print context separators]" '--debug[show debug messages]' '--field-context-separator[set string to delimit fields in context lines]' '--field-match-separator[set string to delimit fields in matching lines]' '--hostname-bin=[executable for getting system hostname]:hostname executable:_command_names -e' '--hyperlink-format=[specify pattern for hyperlinks]:pattern' '--trace[show more verbose debug messages]' '--dfa-size-limit=[specify upper size limit of generated DFA]:DFA size (bytes)' "(1 stats)--files[show each file that would be searched (but don't search)]" '*--ignore-file=[specify additional ignore file]:ignore file:_files' '(-v --invert-match)'{-v,--invert-match}'[invert matching]' $no"--no-invert-match[do not invert matching]" '(-M --max-columns)'{-M+,--max-columns=}'[specify max length of lines to print]:number of bytes' '(-m --max-count)'{-m+,--max-count=}'[specify max number of matches per file]:number of matches' '--max-filesize=[specify size above which files should be ignored]:file size (bytes)' "--no-config[don't load configuration files]" '(-0 --null)'{-0,--null}'[print NUL byte after file names]' '--path-separator=[specify path separator to use when printing file names]:separator' '(-q --quiet)'{-q,--quiet}'[suppress normal output]' '--regex-size-limit=[specify upper size limit of compiled regex]:regex size (bytes)' '*'{-u,--unrestricted}'[reduce level of "smart" searching]' '--stop-on-nonmatch[stop on first non-matching line after a matching one]' + operand # Operands '(--files --type-list file regexp)1: :_guard "^-*" pattern' '(--type-list)*: :_files' ) # This is used with test-complete to verify that there are no options # listed in the help output that aren't also defined here [[ $_RG_COMPLETE_LIST_ARGS == (1|t*|y*) ]] && { print -rl - $args return 0 } # Strip out argument groups where unsupported (see above) [[ $ZSH_VERSION == (4|5.<0-3>)(.*)# ]] && args=( ${(@)args:#(#i)(+|[a-z0-9][a-z0-9_-]#|\([a-z0-9][a-z0-9_-]#\))} ) _arguments -C -s -S : $args && ret=0 case $state in colorspec) if [[ ${IPREFIX#--*=}$PREFIX == [^:]# ]]; then suf=( -qS: ) tmp=( 'column:specify coloring for column numbers' 'line:specify coloring for line numbers' 'match:specify coloring for match text' 'path:specify coloring for file names' ) descr='color/style type' elif [[ ${IPREFIX#--*=}$PREFIX == (column|line|match|path):[^:]# ]]; then suf=( -qS: ) tmp=( 'none:clear color/style for type' 'bg:specify background color' 'fg:specify foreground color' 'style:specify text style' ) descr='color/style attribute' elif [[ ${IPREFIX#--*=}$PREFIX == [^:]##:(bg|fg):[^:]# ]]; then tmp=( black blue green red cyan magenta yellow white ) descr='color name or r,g,b' elif [[ ${IPREFIX#--*=}$PREFIX == [^:]##:style:[^:]# ]]; then tmp=( {,no}bold {,no}intense {,no}underline ) descr='style name' else _message -e colorspec 'no more arguments' fi (( $#tmp )) && { compset -P '*:' _describe -t colorspec $descr tmp $suf && ret=0 } ;; typespec) if compset -P '[^:]##:include:'; then _sequence -s , _rg_types && ret=0 # @todo This bit in particular could be better, but it's a little # complex, and attempting to solve it seems to run us up against a crash # bug — zsh # 40362 elif compset -P '[^:]##:'; then _message 'glob or include directive' && ret=1 elif [[ ! -prefix *:* ]]; then _rg_types -qS : && ret=0 fi ;; esac return ret } # Complete encodings _rg_encodings() { local -a expl local -aU _encodings _encodings=( !ENCODINGS! ) _wanted encodings expl encoding compadd -a "$@" - _encodings } # Complete file types _rg_types() { local -a expl local -aU _types _types=( ${(@)${(f)"$( _call_program types $words[1] --type-list )"}//:[[:space:]]##/:} ) if zstyle -t ":completion:${curcontext}:types" extra-verbose; then _describe -t types 'file type' _types else _wanted types expl 'file type' compadd "$@" - ${(@)_types%%:*} fi } _rg "$@" ################################################################################ # ZSH COMPLETION REFERENCE # # For the convenience of developers who aren't especially familiar with zsh # completion functions, a brief reference guide follows. This is in no way # comprehensive; it covers just enough of the basic structure, syntax, and # conventions to help someone make simple changes like adding new options. For # more complete documentation regarding zsh completion functions, please see the # following: # # * http://zsh.sourceforge.net/Doc/Release/Completion-System.html # * https://github.com/zsh-users/zsh/blob/master/Etc/completion-style-guide # # OVERVIEW # # Most zsh completion functions are defined in terms of `_arguments`, which is a # shell function that takes a series of argument specifications. The specs for # `rg` are stored in an array, which is common for more complex functions; the # elements of the array are passed to `_arguments` on invocation. # # ARGUMENT-SPECIFICATION SYNTAX # # The following is a contrived example of the argument specs for a simple tool: # # '(: * -)'{-h,--help}'[display help information]' # '(-q -v --quiet --verbose)'{-q,--quiet}'[decrease output verbosity]' # '!(-q -v --quiet --verbose)--silent' # '(-q -v --quiet --verbose)'{-v,--verbose}'[increase output verbosity]' # '--color=[specify when to use colors]:when:(always never auto)' # '*:example file:_files' # # Although there may appear to be six specs here, there are actually nine; we # use brace expansion to combine specs for options that go by multiple names, # like `-q` and `--quiet`. This is customary, and ties in with the fact that zsh # merges completion possibilities together when they have the same description. # # The first line defines the option `-h`/`--help`. With most tools, it isn't # useful to complete anything after `--help` because it effectively overrides # all others; the `(: * -)` at the beginning of the spec tells zsh not to # complete any other operands (`:` and `*`) or options (`-`) after this one has # been used. The `[...]` at the end associates a description with `-h`/`--help`; # as mentioned, zsh will see the identical descriptions and merge these options # together when offering completion possibilities. # # The next line defines `-q`/`--quiet`. Here we don't want to suppress further # completions entirely, but we don't want to offer `-q` if `--quiet` has been # given (since they do the same thing), nor do we want to offer `-v` (since it # doesn't make sense to be quiet and verbose at the same time). We don't need to # tell zsh not to offer `--quiet` a second time, since that's the default # behaviour, but since this line expands to two specs describing `-q` *and* # `--quiet` we do need to explicitly list all of them here. # # The next line defines a hidden option `--silent` — maybe it's a deprecated # synonym for `--quiet`. The leading `!` indicates that zsh shouldn't offer this # option during completion. The benefit of providing a spec for an option that # shouldn't be completed is that, if someone *does* use it, we can correctly # suppress completion of other options afterwards. # # The next line defines `-v`/`--verbose`; this works just like `-q`/`--quiet`. # # The next line defines `--color`. In this example, `--color` doesn't have a # corresponding short option, so we don't need to use brace expansion. Further, # there are no other options it's exclusive with (just itself), so we don't need # to define those at the beginning. However, it does take a mandatory argument. # The `=` at the end of `--color=` indicates that the argument may appear either # like `--color always` or like `--color=always`; this is how most GNU-style # command-line tools work. The corresponding short option would normally use `+` # — for example, `-c+` would allow either `-c always` or `-calways`. For this # option, the arguments are known ahead of time, so we can simply list them in # parentheses at the end (`when` is used as the description for the argument). # # The last line defines an operand (a non-option argument). In this example, the # operand can be used any number of times (the leading `*`), and it should be a # file path, so we tell zsh to call the `_files` function to complete it. The # `example file` in the middle is the description to use for this operand; we # could use a space instead to accept the default provided by `_files`. # # GROUPING ARGUMENT SPECIFICATIONS # # Newer versions of zsh support grouping argument specs together. All specs # following a `+` and then a group name are considered to be members of the # named group. Grouping is useful mostly for organisational purposes; it makes # the relationship between different options more obvious, and makes it easier # to specify exclusions. # # We could rewrite our example above using grouping as follows: # # '(: * -)'{-h,--help}'[display help information]' # '--color=[specify when to use colors]:when:(always never auto)' # '*:example file:_files' # + '(verbosity)' # {-q,--quiet}'[decrease output verbosity]' # '!--silent' # {-v,--verbose}'[increase output verbosity]' # # Here we take advantage of a useful feature of spec grouping — when the group # name is surrounded by parentheses, as in `(verbosity)`, it tells zsh that all # of the options in that group are exclusive with each other. As a result, we # don't need to manually list out the exclusions at the beginning of each # option. # # Groups can also be referred to by name in other argument specs; for example: # # '(xyz)--aaa' '*: :_files' # + xyz --xxx --yyy --zzz # # Here we use the group name `xyz` to tell zsh that `--xxx`, `--yyy`, and # `--zzz` are not to be completed after `--aaa`. This makes the exclusion list # much more compact and reusable. # # CONVENTIONS # # zsh completion functions generally adhere to the following conventions: # # * Use two spaces for indentation # * Combine specs for options with different names using brace expansion # * In combined specs, list the short option first (as in `{-a,--text}`) # * Use `+` or `=` as described above for options that take arguments # * Provide a description for all options, option-arguments, and operands # * Capitalise/punctuate argument descriptions as phrases, not complete # sentences — 'display help information', never 'Display help information.' # (but still capitalise acronyms and proper names) # * Write argument descriptions as verb phrases — 'display x', 'enable y', # 'use z' # * Word descriptions to make it clear when an option expects an argument; # usually this is done with the word 'specify', as in 'specify x' or # 'use specified x') # * Write argument descriptions as tersely as possible — for example, articles # like 'a' and 'the' should be omitted unless it would be confusing # # Other conventions currently used by this function: # # * Order argument specs alphabetically by group name, then option name # * Group options that are directly related, mutually exclusive, or frequently # referenced by other argument specs # * Use only characters in the set [a-z0-9_-] in group names # * Order exclusion lists as follows: short options, long options, groups # * Use American English in descriptions # * Use 'don't' in descriptions instead of 'do not' # * Word descriptions for related options as similarly as possible. For example, # `--foo[enable foo]` and `--no-foo[disable foo]`, or `--foo[use foo]` and # `--no-foo[don't use foo]` # * Word descriptions to make it clear when an option only makes sense with # another option, usually by adding '(with -x)' to the end # * Don't quote strings or variables unnecessarily. When quotes are required, # prefer single-quotes to double-quotes # * Prefix option specs with `$no` when the option serves only to negate the # behaviour of another option that must be provided explicitly by the user. # This prevents rarely used options from cluttering up the completion menu ################################################################################ # ------------------------------------------------------------------------------ # Copyright (c) 2011 Github zsh-users - http://github.com/zsh-users # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # * Neither the name of the zsh-users nor the # names of its contributors may be used to endorse or promote products # derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. IN NO EVENT SHALL ZSH-USERS BE LIABLE FOR ANY # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # ------------------------------------------------------------------------------ # Description # ----------- # # Completion script for ripgrep # # ------------------------------------------------------------------------------ # Authors # ------- # # * arcizan # * MaskRay # # ------------------------------------------------------------------------------ # Local Variables: # mode: shell-script # coding: utf-8-unix # indent-tabs-mode: nil # sh-indentation: 2 # sh-basic-offset: 2 # End: # vim: ft=zsh sw=2 ts=2 et !ENCODINGS!after-contextNUMShow NUM lines after each match. Show \fINUM\fP lines after each match. .sp This overrides the \flag{passthru} flag and partially overrides the \flag{context} flag. auto-hybrid-regexno-auto-hybrid-regex(DEPRECATED) Use PCRE2 if appropriate. DEPRECATED. Use \flag{engine} instead. .sp When this flag is used, ripgrep will dynamically choose between supported regex engines depending on the features used in a pattern. When ripgrep chooses a regex engine, it applies that choice for every regex provided to ripgrep (e.g., via multiple \flag{regexp} or \flag{file} flags). .sp As an example of how this flag might behave, ripgrep will attempt to use its default finite automata based regex engine whenever the pattern can be successfully compiled with that regex engine. If PCRE2 is enabled and if the pattern given could not be compiled with the default regex engine, then PCRE2 will be automatically used for searching. If PCRE2 isn't available, then this flag has no effect because there is only one regex engine to choose from. .sp In the future, ripgrep may adjust its heuristics for how it decides which regex engine to use. In general, the heuristics will be limited to a static analysis of the patterns, and not to any specific runtime behavior observed while searching files. .sp The primary downside of using this flag is that it may not always be obvious which regex engine ripgrep uses, and thus, the match semantics or performance profile of ripgrep may subtly and unexpectedly change. However, in many cases, all regex engines will agree on what constitutes a match and it can be nice to transparently support more advanced regex features like look-around and backreferences without explicitly needing to enable them. before-contextShow NUM lines before each match. Show \fINUM\fP lines before each match. .sp This overrides the \flag{passthru} flag and partially overrides the \flag{context} flag. binaryno-binarySearch binary files. Enabling this flag will cause ripgrep to search binary files. By default, ripgrep attempts to automatically skip binary files in order to improve the relevance of results and make the search faster. .sp Binary files are heuristically detected based on whether they contain a \fBNUL\fP byte or not. By default (without this flag set), once a \fBNUL\fP byte is seen, ripgrep will stop searching the file. Usually, \fBNUL\fP bytes occur in the beginning of most binary files. If a \fBNUL\fP byte occurs after a match, then ripgrep will not print the match, stop searching that file, and emit a warning that some matches are being suppressed. .sp In contrast, when this flag is provided, ripgrep will continue searching a file even if a \fBNUL\fP byte is found. In particular, if a \fBNUL\fP byte is found then ripgrep will continue searching until either a match is found or the end of the file is reached, whichever comes sooner. If a match is found, then ripgrep will stop and print a warning saying that the search stopped prematurely. .sp If you want ripgrep to search a file without any special \fBNUL\fP byte handling at all (and potentially print binary data to stdout), then you should use the \flag{text} flag. .sp The \flag{binary} flag is a flag for controlling ripgrep's automatic filtering mechanism. As such, it does not need to be used when searching a file explicitly or when searching stdin. That is, it is only applicable when recursively searching a directory. .sp When the \flag{unrestricted} flag is provided for a third time, then this flag is automatically enabled. .sp This flag overrides the \flag{text} flag. block-bufferedno-block-bufferedForce block buffering. When enabled, ripgrep will use block buffering. That is, whenever a matching line is found, it will be written to an in-memory buffer and will not be written to stdout until the buffer reaches a certain size. This is the default when ripgrep's stdout is redirected to a pipeline or a file. When ripgrep's stdout is connected to a tty, line buffering will be used by default. Forcing block buffering can be useful when dumping a large amount of contents to a tty. .sp This overrides the \flag{line-buffered} flag. byte-offsetno-byte-offsetPrint the byte offset for each matching line. Print the 0-based byte offset within the input file before each line of output. If \flag{only-matching} is specified, print the offset of the matched text itself. .sp If ripgrep does transcoding, then the byte offset is in terms of the result of transcoding and not the original data. This applies similarly to other transformations on the data, such as decompression or a \flag{pre} filter. case-sensitiveSearch case sensitively (default). Execute the search case sensitively. This is the default mode. .sp This is a global option that applies to all patterns given to ripgrep. Individual patterns can still be matched case insensitively by using inline regex flags. For example, \fB(?i)abc\fP will match \fBabc\fP case insensitively even when this flag is used. .sp This flag overrides the \flag{ignore-case} and \flag{smart-case} flags. flag has no negationcrates/core/flags/defs.rscolorWhen to use color. This flag controls when to use colors. The default setting is \fBauto\fP, which means ripgrep will try to guess when to use colors. For example, if ripgrep is printing to a tty, then it will use colors, but if it is redirected to a file or a pipe, then it will suppress color output. .sp ripgrep will suppress color output by default in some other circumstances as well. These include, but are not limited to: .sp .IP \(bu 3n When the \fBTERM\fP environment variable is not set or set to \fBdumb\fP. .sp .IP \(bu 3n When the \fBNO_COLOR\fP environment variable is set (regardless of value). .sp .IP \(bu 3n When flags that imply no use for colors are given. For example, \flag{vimgrep} and \flag{json}. . .PP The possible values for this flag are: .sp .IP \fBnever\fP 10n Colors will never be used. .sp .IP \fBauto\fP 10n The default. ripgrep tries to be smart. .sp .IP \fBalways\fP 10n Colors will always be used regardless of where output is sent. .sp .IP \fBansi\fP 10n Like 'always', but emits ANSI escapes (even in a Windows console). . .PP This flag also controls whether hyperlinks are emitted. For example, when a hyperlink format is specified, hyperlinks won't be used when color is suppressed. If one wants to emit hyperlinks but no colors, then one must use the \flag{colors} flag to manually set all color styles to \fBnone\fP: .sp .EX \-\-colors 'path:none' \\ \-\-colors 'line:none' \\ \-\-colors 'column:none' \\ \-\-colors 'match:none' .EE .sp neveralways' is unrecognizedcolorsCOLOR_SPECConfigure color settings and styles. This flag specifies color settings for use in the output. This flag may be provided multiple times. Settings are applied iteratively. Pre-existing color labels are limited to one of eight choices: \fBred\fP, \fBblue\fP, \fBgreen\fP, \fBcyan\fP, \fBmagenta\fP, \fByellow\fP, \fBwhite\fP and \fBblack\fP. Styles are limited to \fBnobold\fP, \fBbold\fP, \fBnointense\fP, \fBintense\fP, \fBnounderline\fP or \fBunderline\fP. .sp The format of the flag is \fB{\fP\fItype\fP\fB}:{\fP\fIattribute\fP\fB}:{\fP\fIvalue\fP\fB}\fP. \fItype\fP should be one of \fBpath\fP, \fBline\fP, \fBcolumn\fP or \fBmatch\fP. \fIattribute\fP can be \fBfg\fP, \fBbg\fP or \fBstyle\fP. \fIvalue\fP is either a color (for \fBfg\fP and \fBbg\fP) or a text style. A special format, \fB{\fP\fItype\fP\fB}:none\fP, will clear all color settings for \fItype\fP. .sp For example, the following command will change the match color to magenta and the background color for line numbers to yellow: .sp .EX rg \-\-colors 'match:fg:magenta' \-\-colors 'line:bg:yellow' .EE .sp Extended colors can be used for \fIvalue\fP when the tty supports ANSI color sequences. These are specified as either \fIx\fP (256-color) or .IB x , x , x (24-bit truecolor) where \fIx\fP is a number between \fB0\fP and \fB255\fP inclusive. \fIx\fP may be given as a normal decimal number or a hexadecimal number, which is prefixed by \fB0x\fP. .sp For example, the following command will change the match background color to that represented by the rgb value (0,128,255): .sp .EX rg \-\-colors 'match:bg:0,128,255' .EE .sp or, equivalently, .sp .EX rg \-\-colors 'match:bg:0x0,0x80,0xFF' .EE .sp Note that the \fBintense\fP and \fBnointense\fP styles will have no effect when used alongside these extended color codes. columnno-columnShow column numbers. Show column numbers (1-based). This only shows the column numbers for the first match on each line. This does not try to account for Unicode. One byte is equal to one column. This implies \flag{line-number}. .sp When \flag{only-matching} is used, then the column numbers written correspond to the start of each match. contextShow NUM lines before and after each match. Show \fINUM\fP lines before and after each match. This is equivalent to providing both the \flag{before-context} and \flag{after-context} flags with the same value. .sp This overrides the \flag{passthru} flag. The \flag{after-context} and \flag{before-context} flags both partially override this flag, regardless of the order. For example, \fB\-A2 \-C1\fP is equivalent to \fB\-A2 \-B1\fP. context-separatorno-context-separatorSEPARATORSet the separator for contextual chunks. The string used to separate non-contiguous context lines in the output. This is only used when one of the context flags is used (that is, \flag{after-context}, \flag{before-context} or \flag{context}). Escape sequences like \fB\\x7F\fP or \fB\\t\fP may be used. The default value is \fB\-\-\fP. .sp When the context separator is set to an empty string, then a line break is still inserted. To completely disable context separators, use the \flag-negate{context-separator} flag. internal error: entered unreachable code: flag can only be disabledcountShow count of matching lines for each file. This flag suppresses normal output and shows the number of lines that match the given patterns for each file searched. Each file containing a match has its path and count printed on each line. Note that unless \flag{multiline} is enabled, this reports the number of lines that match and not the total number of matches. In multiline mode, \flag{count} is equivalent to \flag{count-matches}. .sp If only one file is given to ripgrep, then only the count is printed if there is a match. The \flag{with-filename} flag can be used to force printing the file path in this case. If you need a count to be printed regardless of whether there is a match, then use \flag{include-zero}. .sp This overrides the \flag{count-matches} flag. Note that when \flag{count} is combined with \flag{only-matching}, then ripgrep behaves as if \flag{count-matches} was given. --count can only be enabledcount-matchesShow count of every match for each file. This flag suppresses normal output and shows the number of individual matches of the given patterns for each file searched. Each file containing matches has its path and match count printed on each line. Note that this reports the total number of individual matches and not the number of lines that match. .sp If only one file is given to ripgrep, then only the count is printed if there is a match. The \flag{with-filename} flag can be used to force printing the file path in this case. .sp This overrides the \flag{count} flag. Note that when \flag{count} is combined with \flag{only-matching}, then ripgrep behaves as if \flag{count-matches} was given. --count-matches can only be enabledno-crlfUse CRLF line terminators (nice for Windows). When enabled, ripgrep will treat CRLF (\fB\\r\\n\fP) as a line terminator instead of just \fB\\n\fP. .sp Principally, this permits the line anchor assertions \fB^\fP and \fB$\fP in regex patterns to treat CRLF, CR or LF as line terminators instead of just LF. Note that they will never match between a CR and a LF. CRLF is treated as one single line terminator. .sp When using the default regex engine, CRLF support can also be enabled inside the pattern with the \fBR\fP flag. For example, \fB(?R:$)\fP will match just before either CR or LF, but never between CR and LF. .sp This flag overrides \flag{null-data}. debugShow debug messages. Show debug messages. Please use this when filing a bug report. .sp The \flag{debug} flag is generally useful for figuring out why ripgrep skipped searching a particular file. The debug messages should mention all files skipped and why they were skipped. .sp To get even more debug output, use the \flag{trace} flag, which implies \flag{debug} along with additional trace data. --debug can only be enableddfa-size-limitNUM+SUFFIX?The upper size limit of the regex DFA. The upper size limit of the regex DFA. The default limit is something generous for any single pattern or for many smallish patterns. This should only be changed on very large regex inputs where the (slower) fallback regex engine may otherwise be used if the limit is reached. .sp The input format accepts suffixes of \fBK\fP, \fBM\fP or \fBG\fP which correspond to kilobytes, megabytes and gigabytes, respectively. If no suffix is provided the input is treated as bytes. no-encodingSpecify the text encoding of files to search. Specify the text encoding that ripgrep will use on all files searched. The default value is \fBauto\fP, which will cause ripgrep to do a best effort automatic detection of encoding on a per-file basis. Automatic detection in this case only applies to files that begin with a UTF-8 or UTF-16 byte-order mark (BOM). No other automatic detection is performed. One can also specify \fBnone\fP which will then completely disable BOM sniffing and always result in searching the raw bytes, including a BOM if it's present, regardless of its encoding. .sp Other supported values can be found in the list of labels here: \fIhttps://encoding.spec.whatwg.org/#concept-encoding-get\fP. .sp For more details on encoding and how ripgrep deals with it, see \fBGUIDE.md\fP. .sp The encoding detection that ripgrep uses can be reverted to its automatic mode via the \flag-negate{encoding} flag. internal error: entered unreachable code: --encoding must accept a valueengineENGINESpecify which regex engine to use. Specify which regular expression engine to use. When you choose a regex engine, it applies that choice for every regex provided to ripgrep (e.g., via multiple \flag{regexp} or \flag{file} flags). .sp Accepted values are \fBdefault\fP, \fBpcre2\fP, or \fBauto\fP. .sp The default value is \fBdefault\fP, which is usually the fastest and should be good for most use cases. The \fBpcre2\fP engine is generally useful when you want to use features such as look-around or backreferences. \fBauto\fP will dynamically choose between supported regex engines depending on the features used in a pattern on a best effort basis. .sp Note that the \fBpcre2\fP engine is an optional ripgrep feature. If PCRE2 wasn't included in your build of ripgrep, then using this flag will result in ripgrep printing an error message and exiting. .sp This overrides previous uses of the \flag{pcre2} and \flag{auto-hybrid-regex} flags. defaultpcre2unrecognized regex engine 'field-context-separatorSet the field context separator. Set the field context separator. This separator is only used when printing contextual lines. It is used to delimit file paths, line numbers, columns and the contextual line itself. The separator may be any number of bytes, including zero. Escape sequences like \fB\\x7F\fP or \fB\\t\fP may be used. .sp The \fB-\fP character is the default value. field-match-separatorSet the field match separator. Set the field match separator. This separator is only used when printing matching lines. It is used to delimit file paths, line numbers, columns and the matching line itself. The separator may be any number of bytes, including zero. Escape sequences like \fB\\x7F\fP or \fB\\t\fP may be used. .sp The \fB:\fP character is the default value. PATTERNFILESearch for patterns from the given file. Search for patterns from the given file, with one pattern per line. When this flag is used multiple times or in combination with the \flag{regexp} flag, then all patterns provided are searched. Empty pattern lines will match all input lines, and the newline is not counted as part of the pattern. .sp A line is printed if and only if it matches at least one of the patterns. .sp When \fIPATTERNFILE\fP is \fB-\fP, then \fBstdin\fP will be read for the patterns. .sp When \flag{file} or \flag{regexp} is used, then ripgrep treats all positional arguments as files or directories to search. filesPrint each file that would be searched. Print each file that would be searched without actually performing the search. This is useful to determine whether a particular file is being searched or not. .sp This overrides \flag{type-list}. assertion failed: v.unwrap_switch()files-with-matchesPrint the paths with at least one match. Print only the paths with at least one match and suppress match contents. .sp This overrides \flag{files-without-match}. --files-with-matches can only be enabledfiles-without-matchPrint the paths that contain zero matches. Print the paths that contain zero matches and suppress match contents. .sp This overrides \flag{files-with-matches}. --files-without-match can only be enabledfixed-stringsTreat all patterns as literals. Treat all patterns as literals instead of as regular expressions. When this flag is used, special regular expression meta characters such as \fB.(){}*+\fP should not need be escaped. followno-followFollow symbolic links. This flag instructs ripgrep to follow symbolic links while traversing directories. This behavior is disabled by default. Note that ripgrep will check for symbolic link loops and report errors if it finds one. ripgrep will also report errors for broken links. To suppress error messages, use the \flag{no-messages} flag. Generate man pages and completion scripts. This flag instructs ripgrep to generate some special kind of output identified by \fIKIND\fP and then quit without searching. \fIKIND\fP can be one of the following values: .sp .TP 15 \fBman\fP Generates a manual page for ripgrep in the \fBroff\fP format. .TP 15 \fBcomplete\-bash\fP Generates a completion script for the \fBbash\fP shell. .TP 15 \fBcomplete\-zsh\fP Generates a completion script for the \fBzsh\fP shell. .TP 15 \fBcomplete\-fish\fP Generates a completion script for the \fBfish\fP shell. .TP 15 \fBcomplete\-powershell\fP Generates a completion script for PowerShell. .PP The output is written to \fBstdout\fP. The list above may expand over time. mancomplete-bashcomplete-zshcomplete-fishcomplete-powershellInclude or exclude file paths. Include or exclude files and directories for searching that match the given glob. This always overrides any other ignore logic. Multiple glob flags may be used. Globbing rules match \fB.gitignore\fP globs. Precede a glob with a \fB!\fP to exclude it. If multiple globs match a file or directory, the glob given later in the command line takes precedence. .sp As an extension, globs support specifying alternatives: .BI "\-g '" ab{c,d}* ' is equivalent to .BI "\-g " "abc " "\-g " abd. Empty alternatives like .BI "\-g '" ab{,c} ' are not currently supported. Note that this syntax extension is also currently enabled in \fBgitignore\fP files, even though this syntax isn't supported by git itself. ripgrep may disable this syntax extension in gitignore files, but it will always remain available via the \flag{glob} flag. .sp When this flag is set, every file and directory is applied to it to test for a match. For example, if you only want to search in a particular directory \fIfoo\fP, then .BI "\-g " foo is incorrect because \fIfoo/bar\fP does not match the glob \fIfoo\fP. Instead, you should use .BI "\-g '" foo/** '. glob-case-insensitiveno-glob-case-insensitiveProcess all glob patterns case insensitively. Process all glob patterns given with the \flag{glob} flag case insensitively. This effectively treats \flag{glob} as \flag{iglob}. headingno-headingPrint matches grouped by each file. This flag prints the file path above clusters of matches from each file instead of printing the file path as a prefix for each matched line. .sp This is the default mode when printing to a tty. .sp When \fBstdout\fP is not a tty, then ripgrep will default to the standard grep-like format. One can force this format in Unix-like environments by piping the output of ripgrep to \fBcat\fP. For example, \fBrg\fP \fIfoo\fP \fB| cat\fP. Show help output. This flag prints the help output for ripgrep. .sp Unlike most other flags, the behavior of the short flag, \fB\-h\fP, and the long flag, \fB\-\-help\fP, is different. The short flag will show a condensed help output while the long flag will show a verbose help output. The verbose help output has complete documentation, where as the condensed help output will show only a single line for every flag. --help has no negationhiddenno-hiddenSearch hidden files and directories. Search hidden files and directories. By default, hidden files and directories are skipped. Note that if a hidden file or a directory is whitelisted in an ignore file, then it will be searched even if this flag isn't provided. Similarly if a hidden file or directory is given explicitly as an argument to ripgrep. .sp A file or directory is considered hidden if its base name starts with a dot character (\fB.\fP). On operating systems which support a "hidden" file attribute, like Windows, files with this attribute are also considered hidden. hostname-binCOMMANDRun a program to get this system's hostname. This flag controls how ripgrep determines this system's hostname. The flag's value should correspond to an executable (either a path or something that can be found via your system's \fBPATH\fP environment variable). When set, ripgrep will run this executable, with no arguments, and treat its output (with leading and trailing whitespace stripped) as your system's hostname. .sp When not set (the default, or the empty string), ripgrep will try to automatically detect your system's hostname. On Unix, this corresponds to calling \fBgethostname\fP. On Windows, this corresponds to calling \fBGetComputerNameExW\fP to fetch the system's "physical DNS hostname." .sp ripgrep uses your system's hostname for producing hyperlinks. FORMATSet the format of hyperlinks. Set the format of hyperlinks to use when printing results. Hyperlinks make certain elements of ripgrep's output, such as file paths, clickable. This generally only works in terminal emulators that support OSC-8 hyperlinks. For example, the format \fBfile://{host}{path}\fP will emit an RFC 8089 hyperlink. To see the format that ripgrep is using, pass the \flag{debug} flag. .sp Alternatively, a format string may correspond to one of the following aliases: \fBdefault\fP, \fBnone\fP, \fBfile\fP, \fBgrep+\fP, \fBkitty\fP, \fBmacvim\fP, \fBtextmate\fP, \fBvscode\fP, \fBvscode-insiders\fP, \fBvscodium\fP. The alias will be replaced with a format string that is intended to work for the corresponding application. .sp The following variables are available in the format string: .sp .TP 12 \fB{path}\fP Required. This is replaced with a path to a matching file. The path is guaranteed to be absolute and percent encoded such that it is valid to put into a URI. Note that a path is guaranteed to start with a /. .TP 12 \fB{host}\fP Optional. This is replaced with your system's hostname. On Unix, this corresponds to calling \fBgethostname\fP. On Windows, this corresponds to calling \fBGetComputerNameExW\fP to fetch the system's "physical DNS hostname." Alternatively, if \flag{hostname-bin} was provided, then the hostname returned from the output of that program will be returned. If no hostname could be found, then this variable is replaced with the empty string. .TP 12 \fB{line}\fP Optional. If appropriate, this is replaced with the line number of a match. If no line number is available (for example, if \fB\-\-no\-line\-number\fP was given), then it is automatically replaced with the value 1. .TP 12 \fB{column}\fP Optional, but requires the presence of \fB{line}\fP. If appropriate, this is replaced with the column number of a match. If no column number is available (for example, if \fB\-\-no\-column\fP was given), then it is automatically replaced with the value 1. .TP 12 \fB{wslprefix}\fP Optional. This is a special value that is set to \fBwsl$/\fP\fIWSL_DISTRO_NAME\fP, where \fIWSL_DISTRO_NAME\fP corresponds to the value of the equivalent environment variable. If the system is not Unix or if the \fIWSL_DISTRO_NAME\fP environment variable is not set, then this is replaced with the empty string. .PP A format string may be empty. An empty format string is equivalent to the \fBnone\fP alias. In this case, hyperlinks will be disabled. .sp At present, ripgrep does not enable hyperlinks by default. Users must opt into them. If you aren't sure what format to use, try \fBdefault\fP. .sp Like colors, when ripgrep detects that stdout is not connected to a tty, then hyperlinks are automatically disabled, regardless of the value of this flag. Users can pass \fB\-\-color=always\fP to forcefully emit hyperlinks. .sp Note that hyperlinks are only written when a path is also in the output and colors are enabled. To write hyperlinks without colors, you'll need to configure ripgrep to not colorize anything without actually disabling all ANSI escape codes completely: .sp .EX \-\-colors 'path:none' \\ \-\-colors 'line:none' \\ \-\-colors 'column:none' \\ \-\-colors 'match:none' .EE .sp ripgrep works this way because it treats the \flag{color} flag as a proxy for whether ANSI escape codes should be used at all. This means that environment variables like \fBNO_COLOR=1\fP and \fBTERM=dumb\fP not only disable colors, but hyperlinks as well. Similarly, colors and hyperlinks are disabled when ripgrep is not writing to a tty. (Unless one forces the issue by setting \fB\-\-color=always\fP.) .sp If you're searching a file directly, for example: .sp .EX rg foo path/to/file .EE .sp then hyperlinks will not be emitted since the path given does not appear in the output. To make the path appear, and thus also a hyperlink, use the \flag{with-filename} flag. .sp For more information on hyperlinks in terminal emulators, see: https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda invalid hyperlink formatiglobInclude/exclude paths case insensitively. Include or exclude files and directories for searching that match the given glob. This always overrides any other ignore logic. Multiple glob flags may be used. Globbing rules match \fB.gitignore\fP globs. Precede a glob with a \fB!\fP to exclude it. If multiple globs match a file or directory, the glob given later in the command line takes precedence. Globs used via this flag are matched case insensitively. ignore-caseCase insensitive search. When this flag is provided, all patterns will be searched case insensitively. The case insensitivity rules used by ripgrep's default regex engine conform to Unicode's "simple" case folding rules. .sp This is a global option that applies to all patterns given to ripgrep. Individual patterns can still be matched case sensitively by using inline regex flags. For example, \fB(?\-i)abc\fP will match \fBabc\fP case sensitively even when this flag is used. .sp This flag overrides \flag{case-sensitive} and \flag{smart-case}. ignore-fileSpecify additional ignore files. Specifies a path to one or more \fBgitignore\fP formatted rules files. These patterns are applied after the patterns found in \fB.gitignore\fP, \fB.rgignore\fP and \fB.ignore\fP are applied and are matched relative to the current working directory. Multiple additional ignore files can be specified by using this flag repeatedly. When specifying multiple ignore files, earlier files have lower precedence than later files. .sp If you are looking for a way to include or exclude files and directories directly on the command line, then use \flag{glob} instead. ignore-file-case-insensitiveno-ignore-file-case-insensitiveProcess ignore files case insensitively. Process ignore files (\fB.gitignore\fP, \fB.ignore\fP, etc.) case insensitively. Note that this comes with a performance penalty and is most useful on case insensitive file systems (such as Windows). include-zerono-include-zeroInclude zero matches in summary output. When used with \flag{count} or \flag{count-matches}, this causes ripgrep to print the number of matches for each file even if there were zero matches. This is disabled by default but can be enabled to make ripgrep behave more like grep. invert-matchno-invert-match This flag inverts matching. That is, instead of printing lines that match, ripgrep will print lines that don't match. .sp Note that this only inverts line-by-line matching. For example, combining this flag with \flag{files-with-matches} will emit files that contain any lines that do not match the patterns given. That's not the same as, for example, \flag{files-without-match}, which will emit files that do not contain any matching lines. no-jsonShow search results in a JSON Lines format. Enable printing results in a JSON Lines format. .sp When this flag is provided, ripgrep will emit a sequence of messages, each encoded as a JSON object, where there are five different message types: .sp .TP 12 \fBbegin\fP A message that indicates a file is being searched and contains at least one match. .TP 12 \fBend\fP A message the indicates a file is done being searched. This message also include summary statistics about the search for a particular file. .TP 12 \fBmatch\fP A message that indicates a match was found. This includes the text and offsets of the match. .TP 12 \fBcontext\fP A message that indicates a contextual line was found. This includes the text of the line, along with any match information if the search was inverted. .TP 12 \fBsummary\fP The final message emitted by ripgrep that contains summary statistics about the search across all files. .PP Since file paths or the contents of files are not guaranteed to be valid UTF-8 and JSON itself must be representable by a Unicode encoding, ripgrep will emit all data elements as objects with one of two keys: \fBtext\fP or \fBbytes\fP. \fBtext\fP is a normal JSON string when the data is valid UTF-8 while \fBbytes\fP is the base64 encoded contents of the data. .sp The JSON Lines format is only supported for showing search results. It cannot be used with other flags that emit other types of output, such as \flag{files}, \flag{files-with-matches}, \flag{files-without-match}, \flag{count} or \flag{count-matches}. ripgrep will report an error if any of the aforementioned flags are used in concert with \flag{json}. .sp Other flags that control aspects of the standard output such as \flag{only-matching}, \flag{heading}, \flag{replace}, \flag{max-columns}, etc., have no effect when \flag{json} is set. However, enabling JSON output will always implicitly and unconditionally enable \flag{stats}. .sp A more complete description of the JSON format used can be found here: \fIhttps://docs.rs/grep-printer/*/grep_printer/struct.JSON.html\fP. line-bufferedForce line buffering. When enabled, ripgrep will always use line buffering. That is, whenever a matching line is found, it will be flushed to stdout immediately. This is the default when ripgrep's stdout is connected to a tty, but otherwise, ripgrep will use block buffering, which is typically faster. This flag forces ripgrep to use line buffering even if it would otherwise use block buffering. This is typically useful in shell pipelines, for example: .sp .EX tail -f something.log | rg foo --line-buffered | rg bar .EE .sp This overrides the \flag{block-buffered} flag. line-numberShow line numbers. Show line numbers (1-based). .sp This is enabled by default when stdout is connected to a tty. .sp This flag can be disabled by \flag{no-line-number}. --line-number has no automatic negationno-line-numberSuppress line numbers. Suppress line numbers. .sp Line numbers are off by default when stdout is not connected to a tty. .sp Line numbers can be forcefully turned on by \flag{line-number}. --no-line-number has no automatic negationline-regexpShow matches surrounded by line boundaries. When enabled, ripgrep will only show matches surrounded by line boundaries. This is equivalent to surrounding every pattern with \fB^\fP and \fB$\fP. In other words, this only prints lines where the entire line participates in a match. .sp This overrides the \flag{word-regexp} flag. --line-regexp has no negationmax-columnsOmit lines longer than this limit. When given, ripgrep will omit lines longer than this limit in bytes. Instead of printing long lines, only the number of matches in that line is printed. .sp When this flag is omitted or is set to \fB0\fP, then it has no effect. max-columns-previewno-max-columns-previewShow preview for lines exceeding the limit. Prints a preview for lines exceeding the configured max column limit. .sp When the \flag{max-columns} flag is used, ripgrep will by default completely replace any line that is too long with a message indicating that a matching line was removed. When this flag is combined with \flag{max-columns}, a preview of the line (corresponding to the limit size) is shown instead, where the part of the line exceeding the limit is not shown. .sp If the \flag{max-columns} flag is not set, then this has no effect. max-countLimit the number of matching lines. Limit the number of matching lines per file searched to \fINUM\fP. .sp Note that \fB0\fP is a legal value but not likely to be useful. When used, ripgrep won't search anything. max-depthDescend at most NUM directories. This flag limits the depth of directory traversal to \fINUM\fP levels beyond the paths given. A value of \fB0\fP only searches the explicitly given paths themselves. .sp For example, \fBrg --max-depth 0 \fP\fIdir/\fP is a no-op because \fIdir/\fP will not be descended into. \fBrg --max-depth 1 \fP\fIdir/\fP will search only the direct children of \fIdir\fP. .sp An alternative spelling for this flag is \fB\-\-maxdepth\fP. max-filesizeIgnore files larger than NUM in size. Ignore files larger than \fINUM\fP in size. This does not apply to directories. .sp The input format accepts suffixes of \fBK\fP, \fBM\fP or \fBG\fP which correspond to kilobytes, megabytes and gigabytes, respectively. If no suffix is provided the input is treated as bytes. .sp Examples: \fB\-\-max-filesize 50K\fP or \fB\-\-max\-filesize 80M\fP. no-mmapSearch with memory maps when possible. When enabled, ripgrep will search using memory maps when possible. This is enabled by default when ripgrep thinks it will be faster. .sp Memory map searching cannot be used in all circumstances. For example, when searching virtual files or streams likes \fBstdin\fP. In such cases, memory maps will not be used even when this flag is enabled. .sp Note that ripgrep may abort unexpectedly when memory maps are used if it searches a file that is simultaneously truncated. Users can opt out of this possibility by disabling memory maps. multilineno-multilineEnable searching across multiple lines. This flag enable searching across multiple lines. .sp When multiline mode is enabled, ripgrep will lift the restriction that a match cannot include a line terminator. For example, when multiline mode is not enabled (the default), then the regex \fB\\p{any}\fP will match any Unicode codepoint other than \fB\\n\fP. Similarly, the regex \fB\\n\fP is explicitly forbidden, and if you try to use it, ripgrep will return an error. However, when multiline mode is enabled, \fB\\p{any}\fP will match any Unicode codepoint, including \fB\\n\fP, and regexes like \fB\\n\fP are permitted. .sp An important caveat is that multiline mode does not change the match semantics of \fB.\fP. Namely, in most regex matchers, a \fB.\fP will by default match any character other than \fB\\n\fP, and this is true in ripgrep as well. In order to make \fB.\fP match \fB\\n\fP, you must enable the "dot all" flag inside the regex. For example, both \fB(?s).\fP and \fB(?s:.)\fP have the same semantics, where \fB.\fP will match any character, including \fB\\n\fP. Alternatively, the \flag{multiline-dotall} flag may be passed to make the "dot all" behavior the default. This flag only applies when multiline search is enabled. .sp There is no limit on the number of the lines that a single match can span. .sp \fBWARNING\fP: Because of how the underlying regex engine works, multiline searches may be slower than normal line-oriented searches, and they may also use more memory. In particular, when multiline mode is enabled, ripgrep requires that each file it searches is laid out contiguously in memory (either by reading it onto the heap or by memory-mapping it). Things that cannot be memory-mapped (such as \fBstdin\fP) will be consumed until EOF before searching can begin. In general, ripgrep will only do these things when necessary. Specifically, if the \flag{multiline} flag is provided but the regex does not contain patterns that would match \fB\\n\fP characters, then ripgrep will automatically avoid reading each file into memory before searching it. Nevertheless, if you only care about matches spanning at most one line, then it is always better to disable multiline mode. .sp This overrides the \flag{stop-on-nonmatch} flag. no-multiline-dotallMake '.' match line terminators. This flag enables "dot all" mode in all regex patterns. This causes \fB.\fP to match line terminators when multiline searching is enabled. This flag has no effect if multiline searching isn't enabled with the \flag{multiline} flag. .sp Normally, a \fB.\fP will match any character except line terminators. While this behavior typically isn't relevant for line-oriented matching (since matches can span at most one line), this can be useful when searching with the \flag{multiline} flag. By default, multiline mode runs without "dot all" mode enabled. .sp This flag is generally intended to be used in an alias or your ripgrep config file if you prefer "dot all" semantics by default. Note that regardless of whether this flag is used, "dot all" semantics can still be controlled via inline flags in the regex pattern itself, e.g., \fB(?s:.)\fP always enables "dot all" whereas \fB(?-s:.)\fP always disables "dot all". Moreover, you can use character classes like \fB\\p{any}\fP to match any Unicode codepoint regardless of whether "dot all" mode is enabled or not. no-configNever read configuration files. When set, ripgrep will never read configuration files. When this flag is present, ripgrep will not respect the \fBRIPGREP_CONFIG_PATH\fP environment variable. .sp If ripgrep ever grows a feature to automatically read configuration files in pre-defined locations, then this flag will also disable that behavior as well. --no-config has no negationno-ignoreignoreDon't use ignore files. When set, ignore files such as \fB.gitignore\fP, \fB.ignore\fP and \fB.rgignore\fP will not be respected. This implies \flag{no-ignore-dot}, \flag{no-ignore-exclude}, \flag{no-ignore-global}, \flag{no-ignore-parent} and \flag{no-ignore-vcs}. .sp This does not imply \flag{no-ignore-files}, since \flag{ignore-file} is specified explicitly as a command line argument. .sp When given only once, the \flag{unrestricted} flag is identical in behavior to this flag and can be considered an alias. However, subsequent \flag{unrestricted} flags have additional effects. no-ignore-dotignore-dotDon't use .ignore or .rgignore files. Don't respect filter rules from \fB.ignore\fP or \fB.rgignore\fP files. .sp This does not impact whether ripgrep will ignore files and directories whose names begin with a dot. For that, see the \flag{hidden} flag. This flag also does not impact whether filter rules from \fB.gitignore\fP files are respected. no-ignore-excludeignore-excludeDon't use local exclusion files. Don't respect filter rules from files that are manually configured for the repository. For example, this includes \fBgit\fP's \fB.git/info/exclude\fP. no-ignore-filesignore-filesDon't use --ignore-file arguments. When set, any \flag{ignore-file} flags, even ones that come after this flag, are ignored. ignore-globalDon't use global ignore files. Don't respect filter rules from ignore files that come from "global" sources such as \fBgit\fP's \fBcore.excludesFile\fP configuration option (which defaults to \fB$HOME/.config/git/ignore\fP). no-ignore-messagesignore-messagesSuppress gitignore parse error messages. When this flag is enabled, all error messages related to parsing ignore files are suppressed. By default, error messages are printed to stderr. In cases where these errors are expected, this flag can be used to avoid seeing the noise produced by the messages. ignore-parentDon't use ignore files in parent directories. When this flag is set, filter rules from ignore files found in parent directories are not respected. By default, ripgrep will ascend the parent directories of the current working directory to look for any applicable ignore files that should be applied. In some cases this may not be desirable. no-ignore-vcsignore-vcsDon't use ignore files from source control. When given, filter rules from source control ignore files (e.g., \fB.gitignore\fP) are not respected. By default, ripgrep respects \fBgit\fP's ignore rules for automatic filtering. In some cases, it may not be desirable to respect the source control's ignore rules and instead only respect rules in \fB.ignore\fP or \fB.rgignore\fP. .sp This flag implies \flag{no-ignore-parent} for source control ignore files as well. no-messagesSuppress some error messages. This flag suppresses some error messages. Specifically, messages related to the failed opening and reading of files. Error messages related to the syntax of the pattern are still shown. pcre2-unicode(DEPRECATED) Disable Unicode mode for PCRE2. DEPRECATED. Use \flag{no-unicode} instead. .sp Note that Unicode mode is enabled by default. no-require-gitrequire-gitUse .gitignore outside of git repositories. When this flag is given, source control ignore files such as \fB.gitignore\fP are respected even if no \fBgit\fP repository is present. .sp By default, ripgrep will only respect filter rules from source control ignore files when ripgrep detects that the search is executed inside a source control repository. For example, when a \fB.git\fP directory is observed. .sp This flag relaxes the default restriction. For example, it might be useful when the contents of a \fBgit\fP repository are stored or copied somewhere, but where the repository state is absent. no-unicodeunicodeDisable Unicode mode. This flag disables Unicode mode for all patterns given to ripgrep. .sp By default, ripgrep will enable "Unicode mode" in all of its regexes. This has a number of consequences: .sp .IP \(bu 3n \fB.\fP will only match valid UTF-8 encoded Unicode scalar values. .sp .IP \(bu 3n Classes like \fB\\w\fP, \fB\\s\fP, \fB\\d\fP are all Unicode aware and much bigger than their ASCII only versions. .sp .IP \(bu 3n Case insensitive matching will use Unicode case folding. .sp .IP \(bu 3n A large array of classes like \fB\\p{Emoji}\fP are available. (Although the specific set of classes available varies based on the regex engine. In general, the default regex engine has more classes available to it.) .sp .IP \(bu 3n Word boundaries (\fB\\b\fP and \fB\\B\fP) use the Unicode definition of a word character. .PP In some cases it can be desirable to turn these things off. This flag will do exactly that. For example, Unicode mode can sometimes have a negative impact on performance, especially when things like \fB\\w\fP are used frequently (including via bounded repetitions like \fB\\w{100}\fP) when only their ASCII interpretation is needed. Print a NUL byte after file paths. Whenever a file path is printed, follow it with a \fBNUL\fP byte. This includes printing file paths before matches, and when printing a list of matching files such as with \flag{count}, \flag{files-with-matches} and \flag{files}. This option is useful for use with \fBxargs\fP. --null has no negationnull-dataUse NUL as a line terminator. Enabling this flag causes ripgrep to use \fBNUL\fP as a line terminator instead of the default of \fP\\n\fP. .sp This is useful when searching large binary files that would otherwise have very long lines if \fB\\n\fP were used as the line terminator. In particular, ripgrep requires that, at a minimum, each line must fit into memory. Using \fBNUL\fP instead can be a useful stopgap to keep memory requirements low and avoid OOM (out of memory) conditions. .sp This is also useful for processing NUL delimited data, such as that emitted when using ripgrep's \flag{null} flag or \fBfind\fP's \fB\-\-print0\fP flag. .sp Using this flag implies \flag{text}. It also overrides \flag{crlf}. --null-data has no negationone-file-systemno-one-file-systemSkip directories on other file systems. When enabled, ripgrep will not cross file system boundaries relative to where the search started from. .sp Note that this applies to each path argument given to ripgrep. For example, in the command .sp .EX rg \-\-one\-file\-system /foo/bar /quux/baz .EE .sp ripgrep will search both \fI/foo/bar\fP and \fI/quux/baz\fP even if they are on different file systems, but will not cross a file system boundary when traversing each path's directory tree. .sp This is similar to \fBfind\fP's \fB\-xdev\fP or \fB\-mount\fP flag. only-matchingPrint only matched parts of a line. Print only the matched (non-empty) parts of a matching line, with each such part on a separate output line. --only-matching does not have a negationpath-separatorSet the path separator for printing paths. Set the path separator to use when printing file paths. This defaults to your platform's path separator, which is \fB/\fP on Unix and \fB\\\fP on Windows. This flag is intended for overriding the default when the environment demands it (e.g., cygwin). A path separator is limited to a single byte. .sp Setting this flag to an empty string reverts it to its default behavior. That is, the path separator is automatically chosen based on the environment. A path separator must be exactly one byte, but the given separator is In some shells on Windows '/' is automatically expanded. Use '//' instead.passthroughPrint both matching and non-matching lines. Print both matching and non-matching lines. .sp Another way to achieve a similar effect is by modifying your pattern to match the empty string. For example, if you are searching using \fBrg\fP \fIfoo\fP, then using \fBrg\fP \fB'^|\fP\fIfoo\fP\fB'\fP instead will emit every line in every file searched, but only occurrences of \fIfoo\fP will be highlighted. This flag enables the same behavior without needing to modify the pattern. .sp An alternative spelling for this flag is \fB\-\-passthrough\fP. .sp This overrides the \flag{context}, \flag{after-context} and \flag{before-context} flags. --passthru has no negationEnable PCRE2 matching. When this flag is present, ripgrep will use the PCRE2 regex engine instead of its default regex engine. .sp This is generally useful when you want to use features such as look-around or backreferences. .sp Using this flag is the same as passing \fB\-\-engine=pcre2\fP. Users may instead elect to use \fB\-\-engine=auto\fP to ask ripgrep to automatically select the right regex engine based on the patterns given. This flag and the \flag{engine} flag override one another. .sp Note that PCRE2 is an optional ripgrep feature. If PCRE2 wasn't included in your build of ripgrep, then using this flag will result in ripgrep printing an error message and exiting. PCRE2 may also have worse user experience in some cases, since it has fewer introspection APIs than ripgrep's default regex engine. For example, if you use a \fB\\n\fP in a PCRE2 regex without the \flag{multiline} flag, then ripgrep will silently fail to match anything instead of reporting an error immediately (like it does with the default regex engine). pcre2-versionPrint the version of PCRE2 that ripgrep uses. When this flag is present, ripgrep will print the version of PCRE2 in use, along with other information, and then exit. If PCRE2 is not available, then ripgrep will print an error message and exit with an error code. --pcre2-version has no negationpreno-preSearch output of COMMAND for each PATH. For each input \fIPATH\fP, this flag causes ripgrep to search the standard output of \fICOMMAND\fP \fIPATH\fP instead of the contents of \fIPATH\fP. This option expects the \fICOMMAND\fP program to either be a path or to be available in your \fBPATH\fP. Either an empty string \fICOMMAND\fP or the \fB\-\-no\-pre\fP flag will disable this behavior. .sp .TP 12 \fBWARNING\fP When this flag is set, ripgrep will unconditionally spawn a process for every file that is searched. Therefore, this can incur an unnecessarily large performance penalty if you don't otherwise need the flexibility offered by this flag. One possible mitigation to this is to use the \flag{pre-glob} flag to limit which files a preprocessor is run with. .PP A preprocessor is not run when ripgrep is searching stdin. .sp When searching over sets of files that may require one of several preprocessors, \fICOMMAND\fP should be a wrapper program which first classifies \fIPATH\fP based on magic numbers/content or based on the \fIPATH\fP name and then dispatches to an appropriate preprocessor. Each \fICOMMAND\fP also has its standard input connected to \fIPATH\fP for convenience. .sp For example, a shell script for \fICOMMAND\fP might look like: .sp .EX case "$1" in *.pdf) exec pdftotext "$1" - ;; *) case $(file "$1") in *Zstandard*) exec pzstd -cdq ;; *) exec cat ;; esac ;; esac .EE .sp The above script uses \fBpdftotext\fP to convert a PDF file to plain text. For all other files, the script uses the \fBfile\fP utility to sniff the type of the file based on its contents. If it is a compressed file in the Zstandard format, then \fBpzstd\fP is used to decompress the contents to stdout. .sp This overrides the \flag{search-zip} flag. there is no affirmative switch for --preInclude or exclude files from a preprocessor. This flag works in conjunction with the \flag{pre} flag. Namely, when one or more \flag{pre-glob} flags are given, then only files that match the given set of globs will be handed to the command specified by the \flag{pre} flag. Any non-matching files will be searched without using the preprocessor command. .sp This flag is useful when searching many files with the \flag{pre} flag. Namely, it provides the ability to avoid process overhead for files that don't need preprocessing. For example, given the following shell script, \fIpre-pdftotext\fP: .sp .EX #!/bin/sh pdftotext "$1" - .EE .sp then it is possible to use \fB\-\-pre\fP \fIpre-pdftotext\fP \fB--pre-glob '\fP\fI*.pdf\fP\fB'\fP to make it so ripgrep only executes the \fIpre-pdftotext\fP command on files with a \fI.pdf\fP extension. .sp Multiple \flag{pre-glob} flags may be used. Globbing rules match \fBgitignore\fP globs. Precede a glob with a \fB!\fP to exclude it. .sp This flag has no effect if the \flag{pre} flag is not used. prettyAlias for colors, headings and line numbers. This is a convenience alias for \fB\-\-color=always \-\-heading \-\-line\-number\fP. This flag is useful when you still want pretty output even if you're piping ripgrep to another program or file. For example: \fBrg -p \fP\fIfoo\fP \fB| less -R\fP. --pretty has no negationquietDo not print anything to stdout. Do not print anything to stdout. If a match is found in a file, then ripgrep will stop searching. This is useful when ripgrep is used only for its exit code (which will be an error code if no matches are found). .sp When \flag{files} is used, ripgrep will stop finding files after finding the first file that does not match any ignore rules. --quiet has no negationThe size limit of the compiled regex. The size limit of the compiled regex, where the compiled regex generally corresponds to a single object in memory that can match all of the patterns provided to ripgrep. The default limit is generous enough that most reasonable patterns (or even a small number of them) should fit. .sp This useful to change when you explicitly want to let ripgrep spend potentially much more time and/or memory building a regex matcher. .sp The input format accepts suffixes of \fBK\fP, \fBM\fP or \fBG\fP which correspond to kilobytes, megabytes and gigabytes, respectively. If no suffix is provided the input is treated as bytes. regexpPATTERNA pattern to search for. A pattern to search for. This option can be provided multiple times, where all patterns given are searched, in addition to any patterns provided by \flag{file}. Lines matching at least one of the provided patterns are printed. This flag can also be used when searching for patterns that start with a dash. .sp For example, to search for the literal \fB\-foo\fP: .sp .EX rg \-e \-foo .EE .sp You can also use the special \fB\-\-\fP delimiter to indicate that no more flags will be provided. Namely, the following is equivalent to the above: .sp .EX rg \-\- \-foo .EE .sp When \flag{file} or \flag{regexp} is used, then ripgrep treats all positional arguments as files or directories to search. replaceREPLACEMENTReplace matches with the given text. Replaces every match with the text given when printing results. Neither this flag nor any other ripgrep flag will modify your files. .sp Capture group indices (e.g., \fB$\fP\fI5\fP) and names (e.g., \fB$\fP\fIfoo\fP) are supported in the replacement string. Capture group indices are numbered based on the position of the opening parenthesis of the group, where the leftmost such group is \fB$\fP\fI1\fP. The special \fB$\fP\fI0\fP group corresponds to the entire match. .sp The name of a group is formed by taking the longest string of letters, numbers and underscores (i.e. \fB[_0-9A-Za-z]\fP) after the \fB$\fP. For example, \fB$\fP\fI1a\fP will be replaced with the group named \fI1a\fP, not the group at index \fI1\fP. If the group's name contains characters that aren't letters, numbers or underscores, or you want to immediately follow the group with another string, the name should be put inside braces. For example, \fB${\fP\fI1\fP\fB}\fP\fIa\fP will take the content of the group at index \fI1\fP and append \fIa\fP to the end of it. .sp If an index or name does not refer to a valid capture group, it will be replaced with an empty string. .sp In shells such as Bash and zsh, you should wrap the pattern in single quotes instead of double quotes. Otherwise, capture group indices will be replaced by expanded shell variables which will most likely be empty. .sp To write a literal \fB$\fP, use \fB$$\fP. .sp Note that the replacement by default replaces each match, and not the entire line. To replace the entire line, you should match the entire line. .sp This flag can be used with the \flag{only-matching} flag. search-zipno-search-zipSearch in compressed files. This flag instructs ripgrep to search in compressed files. Currently gzip, bzip2, xz, LZ4, LZMA, Brotli and Zstd files are supported. This option expects the decompression binaries (such as \fBgzip\fP) to be available in your \fBPATH\fP. If the required binaries are not found, then ripgrep will not emit an error messages by default. Use the \flag{debug} flag to see more information. .sp Note that this flag does not make ripgrep search archive formats as directory trees. It only makes ripgrep detect compressed files and then decompress them before searching their contents as it would any other file. .sp This overrides the \flag{pre} flag. smart-caseSmart case search. This flag instructs ripgrep to searches case insensitively if the pattern is all lowercase. Otherwise, ripgrep will search case sensitively. .sp A pattern is considered all lowercase if both of the following rules hold: .sp .IP \(bu 3n First, the pattern contains at least one literal character. For example, \fBa\\w\fP contains a literal (\fBa\fP) but just \fB\\w\fP does not. .sp .IP \(bu 3n Second, of the literals in the pattern, none of them are considered to be uppercase according to Unicode. For example, \fBfoo\\pL\fP has no uppercase literals but \fBFoo\\pL\fP does. .PP This overrides the \flag{case-sensitive} and \flag{ignore-case} flags. --smart-case flag has no negationsort-filesno-sort-files(DEPRECATED) Sort results by file path. DEPRECATED. Use \fB\-\-sort=path\fP instead. .sp This flag instructs ripgrep to sort search results by file path lexicographically in ascending order. Note that this currently disables all parallelism and runs search in a single thread. .sp This flag overrides \flag{sort} and \flag{sortr}. SORTBYSort results in ascending order. This flag enables sorting of results in ascending order. The possible values for this flag are: .sp .TP 12 \fBnone\fP (Default) Do not sort results. Fastest. Can be multi-threaded. .TP 12 \fBpath\fP Sort by file path. Always single-threaded. The order is determined by sorting files in each directory entry during traversal. This means that given the files \fBa/b\fP and \fBa+\fP, the latter will sort after the former even though \fB+\fP would normally sort before \fB/\fP. .TP 12 \fBmodified\fP Sort by the last modified time on a file. Always single-threaded. .TP 12 \fBaccessed\fP Sort by the last accessed time on a file. Always single-threaded. .TP 12 \fBcreated\fP Sort by the creation time on a file. Always single-threaded. .PP If the chosen (manually or by-default) sorting criteria isn't available on your system (for example, creation time is not available on ext4 file systems), then ripgrep will attempt to detect this, print an error and exit without searching. .sp To sort results in reverse or descending order, use the \flag{sortr} flag. Also, this flag overrides \flag{sortr}. .sp Note that sorting results currently always forces ripgrep to abandon parallelism and run in a single thread. createdsortrSort results in descending order. This flag enables sorting of results in descending order. The possible values for this flag are: .sp .TP 12 \fBnone\fP (Default) Do not sort results. Fastest. Can be multi-threaded. .TP 12 \fBpath\fP Sort by file path. Always single-threaded. The order is determined by sorting files in each directory entry during traversal. This means that given the files \fBa/b\fP and \fBa+\fP, the latter will sort before the former even though \fB+\fP would normally sort after \fB/\fP when doing a reverse lexicographic sort. .TP 12 \fBmodified\fP Sort by the last modified time on a file. Always single-threaded. .TP 12 \fBaccessed\fP Sort by the last accessed time on a file. Always single-threaded. .TP 12 \fBcreated\fP Sort by the creation time on a file. Always single-threaded. .PP If the chosen (manually or by-default) sorting criteria isn't available on your system (for example, creation time is not available on ext4 file systems), then ripgrep will attempt to detect this, print an error and exit without searching. .sp To sort results in ascending order, use the \flag{sort} flag. Also, this flag overrides \flag{sort}. .sp Note that sorting results currently always forces ripgrep to abandon parallelism and run in a single thread. statsPrint statistics about the search. When enabled, ripgrep will print aggregate statistics about the search. When this flag is present, ripgrep will print at least the following stats to stdout at the end of the search: number of matched lines, number of files with matches, number of files searched, and the time taken for the entire search to complete. .sp This set of aggregate statistics may expand over time. .sp This flag is always and implicitly enabled when \flag{json} is used. .sp Note that this flag has no effect if \flag{files}, \flag{files-with-matches} or \flag{files-without-match} is passed. Stop searching after a non-match. Enabling this option will cause ripgrep to stop reading a file once it encounters a non-matching line after it has encountered a matching line. This is useful if it is expected that all matches in a given file will be on sequential lines, for example due to the lines being sorted. .sp This overrides the \flag{multiline} flag. --stop-on-nonmatch has no negationno-textSearch binary files as if they were text. This flag instructs ripgrep to search binary files as if they were text. When this flag is present, ripgrep's binary file detection is disabled. This means that when a binary file is searched, its contents may be printed if there is a match. This may cause escape codes to be printed that alter the behavior of your terminal. .sp When binary file detection is enabled, it is imperfect. In general, it uses a simple heuristic. If a \fBNUL\fP byte is seen during search, then the file is considered binary and searching stops (unless this flag is present). Alternatively, if the \flag{binary} flag is used, then ripgrep will only quit when it sees a \fBNUL\fP byte after it sees a match (or searches the entire file). .sp This flag overrides the \flag{binary} flag. threadsSet the approximate number of threads to use. This flag sets the approximate number of threads to use. A value of \fB0\fP (which is the default) causes ripgrep to choose the thread count using heuristics. traceShow trace messages. Show trace messages. This shows even more detail than the \flag{debug} flag. Generally, one should only use this if \flag{debug} doesn't emit the information you're looking for. --trace can only be enabledno-trimTrim prefix whitespace from matches. When set, all ASCII whitespace at the beginning of each line printed will be removed. Only search files matching TYPE. This flag limits ripgrep to searching files matching \fITYPE\fP. Multiple \flag{type} flags may be provided. .sp This flag supports the special value \fBall\fP, which will behave as if \flag{type} was provided for every file type supported by ripgrep (including any custom file types). The end result is that \fB\-\-type=all\fP causes ripgrep to search in "whitelist" mode, where it will only search files it recognizes via its type definitions. .sp Note that this flag has lower precedence than both the \flag{glob} flag and any rules found in ignore files. .sp To see the list of available file types, use the \flag{type-list} flag. Add a new glob for a file type. This flag adds a new glob for a particular file type. Only one glob can be added at a time. Multiple \flag{type-add} flags can be provided. Unless \flag{type-clear} is used, globs are added to any existing globs defined inside of ripgrep. .sp Note that this must be passed to every invocation of ripgrep. Type settings are not persisted. See \fBCONFIGURATION FILES\fP for a workaround. .sp Example: .sp .EX rg \-\-type\-add 'foo:*.foo' -tfoo \fIPATTERN\fP .EE .sp This flag can also be used to include rules from other types with the special include directive. The include directive permits specifying one or more other type names (separated by a comma) that have been defined and its rules will automatically be imported into the type specified. For example, to create a type called src that matches C++, Python and Markdown files, one can use: .sp .EX \-\-type\-add 'src:include:cpp,py,md' .EE .sp Additional glob rules can still be added to the src type by using this flag again: .sp .EX \-\-type\-add 'src:include:cpp,py,md' \-\-type\-add 'src:*.foo' .EE .sp Note that type names must consist only of Unicode letters or numbers. Punctuation characters are not allowed. type-clearClear globs for a file type. Clear the file type globs previously defined for \fITYPE\fP. This clears any previously defined globs for the \fITYPE\fP, but globs can be added after this flag. .sp Note that this must be passed to every invocation of ripgrep. Type settings are not persisted. See \fBCONFIGURATION FILES\fP for a workaround. Do not search files matching TYPE. Do not search files matching \fITYPE\fP. Multiple \flag{type-not} flags may be provided. Use the \flag{type-list} flag to list all available types. .sp This flag supports the special value \fBall\fP, which will behave as if \flag{type-not} was provided for every file type supported by ripgrep (including any custom file types). The end result is that \fB\-\-type\-not=all\fP causes ripgrep to search in "blacklist" mode, where it will only search files that are unrecognized by its type definitions. .sp To see the list of available file types, use the \flag{type-list} flag. type-listShow all supported file types. Show all supported file types and their corresponding globs. This takes any \flag{type-add} and \flag{type-clear} flags given into account. Each type is printed on its own line, followed by a \fB:\fP and then a comma-delimited list of globs for that type on the same line. --type-list has no negationunrestrictedReduce the level of "smart" filtering. This flag reduces the level of "smart" filtering. Repeated uses (up to 3) reduces the filtering even more. When repeated three times, ripgrep will search every file in a directory tree. .sp A single \flag{unrestricted} flag is equivalent to \flag{no-ignore}. Two \flag{unrestricted} flags is equivalent to \flag{no-ignore} \flag{hidden}. Three \flag{unrestricted} flags is equivalent to \flag{no-ignore} \flag{hidden} \flag{binary}. .sp The only filtering ripgrep still does when \fB-uuu\fP is given is to skip symbolic links and to avoid printing matches from binary files. Symbolic links can be followed via the \flag{follow} flag, and binary files can be treated as text files via the \flag{text} flag. --unrestricted has no negationflag can only be repeated up to 3 timesversionPrint ripgrep's version. This flag prints ripgrep's version. This also may print other relevant information, such as the presence of target specific optimizations and the \fBgit\fP revision that this build of ripgrep was compiled from. --version has no negationvimgrepPrint results in a vim compatible format. This flag instructs ripgrep to print results with every match on its own line, including line numbers and column numbers. .sp With this option, a line with more than one match will be printed in its entirety more than once. For that reason, the total amount of output as a result of this flag can be quadratic in the size of the input. For example, if the pattern matches every byte in an input file, then each line will be repeated for every byte matched. For this reason, users should only use this flag when there is no other choice. Editor integrations should prefer some other way of reading results from ripgrep, such as via the \flag{json} flag. One alternative to avoiding exorbitant memory usage is to force ripgrep into single threaded mode with the \flag{threads} flag. Note though that this will not impact the total size of the output, just the heap memory that ripgrep will use. --vimgrep has no negationwith-filenamePrint the file path with each matching line. This flag instructs ripgrep to print the file path for each matching line. This is the default when more than one file is searched. If \flag{heading} is enabled (the default when printing to a tty), the file path will be shown above clusters of matches from each file; otherwise, the file name will be shown as a prefix for each matched line. .sp This flag overrides \flag{no-filename}. --with-filename has no defined negationno-filenameNever print the path with each matching line. This flag instructs ripgrep to never print the file path with each matching line. This is the default when ripgrep is explicitly instructed to search one file or stdin. .sp This flag overrides \flag{with-filename}. --no-filename has no defined negationword-regexpShow matches surrounded by word boundaries. When enabled, ripgrep will only show matches surrounded by word boundaries. This is equivalent to surrounding every pattern with \fB\\b{start-half}\fP and \fB\\b{end-half}\fP. .sp This overrides the \flag{line-regexp} flag. --word-regexp has no negationripgrep !!VERSION!! Andrew Gallant ripgrep (rg) recursively searches the current directory for lines matching a regex pattern. By default, ripgrep will respect gitignore rules and automatically skip hidden files/directories and binary files. Use -h for short descriptions and --help for more details. Project home page: https://github.com/BurntSushi/ripgrep USAGE: rg [OPTIONS] PATTERN [PATH ...] POSITIONAL ARGUMENTS: A regular expression used for searching. ... A file or directory to search. INPUT OPTIONS: !!input!! SEARCH OPTIONS: !!search!! FILTER OPTIONS: !!filter!! OUTPUT OPTIONS: !!output!! OUTPUT MODES: !!output-modes!! LOGGING OPTIONS: !!logging!! OTHER BEHAVIORS: !!other-behaviors!! !!VERSION!!inputsearchfilteroutputoutput-modesloggingother-behaviors!!crates/core/flags/doc/help.rs=SEPcolumns must have equal length ripgrep !!VERSION!! Andrew Gallant ripgrep (rg) recursively searches the current directory for lines matching a regex pattern. By default, ripgrep will respect gitignore rules and automatically skip hidden files/directories and binary files. Use -h for short descriptions and --help for more details. Project home page: https://github.com/BurntSushi/ripgrep USAGE: rg [OPTIONS] PATTERN [PATH ...] rg [OPTIONS] -e PATTERN ... [PATH ...] rg [OPTIONS] -f PATTERNFILE ... [PATH ...] rg [OPTIONS] --files [PATH ...] rg [OPTIONS] --type-list command | rg [OPTIONS] PATTERN rg [OPTIONS] --help rg [OPTIONS] --version POSITIONAL ARGUMENTS: A regular expression used for searching. To match a pattern beginning with a dash, use the -e/--regexp flag. For example, to search for the literal '-foo', you can use this flag: rg -e -foo You can also use the special '--' delimiter to indicate that no more flags will be provided. Namely, the following is equivalent to the above: rg -- -foo ... A file or directory to search. Directories are searched recursively. File paths specified on the command line override glob and ignore rules. INPUT OPTIONS: !!input!! SEARCH OPTIONS: !!search!! FILTER OPTIONS: !!filter!! OUTPUT OPTIONS: !!output!! OUTPUT MODES: !!output-modes!! LOGGING OPTIONS: !!logging!! OTHER BEHAVIORS: !!other-behaviors!! -flag-negate This flag can be disabled with --.\fB\fI\fP\-\\\roff should have no empty lines: