summaryrefslogtreecommitdiffstats
path: root/doc
AgeCommit message (Collapse)Author
2016-10-11clarify docs for --threadsAlex Burka
2016-10-10Clarify documentation for --replace.Andrew Gallant
Also add a minor clarification for --type-add. Fixes #147
2016-09-28Add -s/--case-sensitive flag.Andrew Gallant
This flag overrides both --smart-case and --ignore-case. Closes #124.
2016-09-27add a max-depth option for directory traversalGarrett Squire
CR and add integration test
2016-09-26Add a --null flag.Andrew Gallant
This flag causes a NUL byte to follow any file path in ripgrep's output. Closes #89.
2016-09-25Move --files-with-matches to less common options.Andrew Gallant
2016-09-25Stop after first match is found with --quiet.Andrew Gallant
Fixes #77.
2016-09-25Merge pull request #42 from andschwa/files-with-matchesAndrew Gallant
Files with matches
2016-09-25Clarify documentation of --type-add.Andrew Gallant
This explains it a bit more based on end user feedback. We also fix the example, which was wrong. Fixes #82.
2016-09-24Add --files-with-matches flag.Andrew Schwartzmeyer
Closes #26. Acts like --count but emits only the paths of files with matches, suitable for piping to xargs. Both mmap and no-mmap searches terminate after the first match is found. Documentation updated and tests added.
2016-09-24Add --smart-case.Andrew Gallant
It does what it says on the tin. Closes #70.
2016-09-24Add --no-ignore-vcs flag.Andrew Gallant
This flag will respect .ignore but not .gitignore. Closes #68.
2016-09-24Permit options with --help/--version.Andrew Gallant
Fixes #47.
2016-09-24Add --no-filename flag.Andrew Gallant
When this flag is set, a filename is never shown for a match. Closes #20
2016-09-24Clarify the documentation of the --type-* flags.Andrew Gallant
Fixes #15
2016-09-23Switch from .rgignore to .ignore.Andrew Gallant
But don't actually remove support for .rgignore until the next semver bump. Note that this puts us in line with the silver searcher: https://github.com/ggreer/the_silver_searcher/pull/974 Fixes #40
2016-09-22Add --vimgrep flag.Andrew Gallant
The --vimgrep flag forces a line to be printed for every match, with line and column numbers.
2016-09-22Add man page.Andrew Gallant