summaryrefslogtreecommitdiffstats
path: root/GUIDE.md
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2019-01-26 16:19:09 -0500
committerAndrew Gallant <jamslam@gmail.com>2019-01-26 16:19:09 -0500
commit5724391d3956dbc68c005d4e6f8f8e4718a052bd (patch)
treecc567a394e8fe8181902052d38ad747d4c18f21c /GUIDE.md
parent0df71240ff19fe8fa278b64d8776725f0253bcf9 (diff)
doc: small updates to the FAQ and GUIDE
Notably, ripgrep can do multiline search now. We also update the supported compression format list and replace deprecated flags like `--sort-files` with `--sort path`.
Diffstat (limited to 'GUIDE.md')
-rw-r--r--GUIDE.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/GUIDE.md b/GUIDE.md
index 39ccb52d..343c812e 100644
--- a/GUIDE.md
+++ b/GUIDE.md
@@ -681,10 +681,10 @@ used options that will likely impact how you use ripgrep on a regular basis.
* `--files`: Print the files that ripgrep *would* search, but don't actually
search them.
* `-a/--text`: Search binary files as if they were plain text.
-* `-z/--search-zip`: Search compressed files (gzip, bzip2, lzma, xz). This is
- disabled by default.
+* `-z/--search-zip`: Search compressed files (gzip, bzip2, lzma, xz, lz4,
+ brotli, zstd). This is disabled by default.
* `-C/--context`: Show the lines surrounding a match.
-* `--sort-files`: Force ripgrep to sort its output by file name. (This disables
+* `--sort path`: Force ripgrep to sort its output by file name. (This disables
parallelism, so it might be slower.)
* `-L/--follow`: Follow symbolic links while recursively searching.
* `-M/--max-columns`: Limit the length of lines printed by ripgrep.