summaryrefslogtreecommitdiffstats
path: root/FAQ.md
AgeCommit message (Collapse)Author
2019-04-16doc: fix typo in FAQGerard de Melo
PR #1248
2019-01-26doc: small updates to the FAQ and GUIDEAndrew Gallant
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`.
2018-08-27doc: clarify and fix typoAndrew Gallant
Clarify that --byte-offset may be wrong if the source isn't being read directly. Also tweak the README a bit. And remove a damned Oxford comma.
2018-08-20doc: fix typoAndrew Gallant
2018-08-20doc: caveatsAndrew Gallant
2018-08-20doc: add section on PCRE2 performanceAndrew Gallant
2018-08-20ripgrep: migrate to libripgrepAndrew Gallant
This commit does the work to delete the old `grep` crate and effectively rewrite most of ripgrep core to use the new libripgrep crates. The new `grep` crate is now a facade that collects the various crates that make up libripgrep. The most complex part of ripgrep core is now arguably the translation between command line parameters and the library options, which is ultimately where we want to be.
2018-07-21ripgrep: add support for lz4 decompressionKalle Samuels
This uses the lz4 binary for decompression. Closes #898
2018-04-23doc: add search and replace faqJeremy Day
Closes #870
2018-02-22doc: clarify licensing storyAndrew Gallant
2018-02-21doc: fix typosAndrew Gallant
2018-02-21doc: "to rip" means "fast"Andrew Gallant
Answer the origin story of ripgrep's name.
2018-02-20termcolor: add underline supportBalaji Sivaraman
This commit adds underline support to the termcolor crate, and exposes it through ripgrep. Fixes #798
2018-02-12doc: add "grep replacement" question to FAQAndrew Gallant
I am tired of being throwing "but ripgrep is marketed as a grep replacement" in my face. Let's answer it once and for all.
2018-02-10doc: add color FAQ entriesAndrew Gallant
This commit adds FAQ entries about how to configure ripgrep's coloring, and how to get true color support in Windows consoles.
2018-02-10doc: overhaul documentationAndrew Gallant
This commit cleans up the README and splits portions of it out into a user guide (GUIDE.md) and a FAQ (FAQ.md). The README now provides a small list of documentation "quick" links to various parts of the docs. This commit also does a few other minor touchups.