summaryrefslogtreecommitdiffstats
path: root/src/main.rs
AgeCommit message (Expand)Author
2017-09-18Avoid expensive check with --files (fixes #600)Christof Marti
2017-08-27restore the default SIGPIPE behavior as a temporary workaroundJack O'Connor
2017-08-08Remove unused libc dependencyVurich
2017-05-19Make --quiet flag apply when using --files optionMarc Tiehuis
2017-03-12Add support for additional text encodings.Andrew Gallant
2017-02-18Remove Windows deps from ripgrep proper.Andrew Gallant
2017-01-15Replace internal atty module with atty crate.Andrew Gallant
2017-01-09Don't search stdout redirected file.Andrew Gallant
2016-12-24Remove special ^C handling.Andrew Gallant
2016-12-24Small code cleanups.Andrew Gallant
2016-12-04Simplify code.Andrew Gallant
2016-11-20Completely re-work colored output and tty handling.Andrew Gallant
2016-11-17Switch from Docopt to Clap.Andrew Gallant
2016-11-06Don't ever search directories.Andrew Gallant
2016-11-06Always search paths given by user.Andrew Gallant
2016-11-06Add --no-messages flag.Andrew Gallant
2016-11-06Add -m/--max-count flag.Andrew Gallant
2016-11-05Add parallel recursive directory iterator.Andrew Gallant
2016-10-29Reset the terminal when Ctrl-C is pressedBrian Campbell
2016-10-29Move all gitignore matching to separate crate.Andrew Gallant
2016-10-11Switch to thread_local crate in lieu of thread_local!.Andrew Gallant
2016-09-30Move glob implementation to new crate.Andrew Gallant
2016-09-28Be better with short circuiting with --quiet.Andrew Gallant
2016-09-26Don't print empty lines in single threaded mode.Andrew Gallant
2016-09-26Don't quit if opening a file fails.Andrew Gallant
2016-09-25Don't use an intermediate buffer when --threads=1.Andrew Gallant
2016-09-25Merge pull request #71 from catchmrbharath/issue46Andrew Gallant
2016-09-24[Fixes #46] Use 1 less worker thread than number of threadsBharath M R
2016-09-24If a file is empty, still try to search it.Andrew Gallant
2016-09-20Add an error message for catching a common failure mode.Andrew Gallant
2016-09-15Rework glob sets.Andrew Gallant
2016-09-14Replace crossbeam with deque.Andrew Gallant
2016-09-13We don't use thread_local any more, so remove it.Andrew Gallant
2016-09-13Stream results when feasible.0.0.19Andrew Gallant
2016-09-11We don't need regex-syntax directly in ripgrep.Andrew Gallant
2016-09-10Rename search module to search_stream.Andrew Gallant
2016-09-10Rejigger the atty detection stuff.Andrew Gallant
2016-09-08Refactor how coloring is done.0.0.14Andrew Gallant
2016-09-07Hack in Windows console coloring.0.0.11Andrew Gallant
2016-09-06Add support for memory maps.Andrew Gallant
2016-09-06Only create the Grep searcher once.Andrew Gallant
2016-09-05Whoops. Remove other bits of parking lot.Andrew Gallant
2016-09-05Fix deps so that others can build it.Andrew Gallant
2016-09-05More progress. With coloring!Andrew Gallant
2016-09-05TODOs and some cleanup/refactoring.Andrew Gallant
2016-09-05Lots of progress:Andrew Gallant
2016-09-03making search work (finally)Andrew Gallant
2016-09-03progress on after contextsAndrew Gallant
2016-09-02Switch to Chase-Lev work stealing queue.Andrew Gallant
2016-09-01Make "before" context work.Andrew Gallant