mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-12-23 06:30:57 +00:00
doc: add -F/--fixed-strings to "common options"
#607 is the top result for the search "ripgrep disable regex". I think it makes sense to add it to the user guide, since it's a very useful flag. PR #1945
This commit is contained in:
parent
0ff5dd2360
commit
9b01a8f9ae
1 changed files with 2 additions and 0 deletions
2
GUIDE.md
2
GUIDE.md
|
|
@ -992,6 +992,8 @@ used options that will likely impact how you use ripgrep on a regular basis.
|
|||
* `-S/--smart-case`: This is similar to `--ignore-case`, but disables itself
|
||||
if the pattern contains any uppercase letters. Usually this flag is put into
|
||||
alias or a config file.
|
||||
* `-F/--fixed-strings`: Disable regular expression matching and treat the pattern
|
||||
as a literal string.
|
||||
* `-w/--word-regexp`: Require that all matches of the pattern be surrounded
|
||||
by word boundaries. That is, given `pattern`, the `--word-regexp` flag will
|
||||
cause ripgrep to behave as if `pattern` were actually `\b(?:pattern)\b`.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue