1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2024-12-02 02:56:32 +02:00
ripgrep recursively searches directories for a regex pattern while respecting your gitignore
Go to file
Andrew Gallant 61f49ba716 Remove the buffered reader.
We really need functionality like this when memory maps aren't suitable,
either because they're too slow or because they just aren't available (like
for reading stdin). However, this particular approach was completely bunk.
Namely, the interface was all wrong. The caller needs to maintain some kind
of control over the search buffers for special output features (like
contexts or inverted matching), but this interface as written doesn't
support that kind of pattern at all.

So... back to the drawing board.
2016-08-24 18:06:42 -04:00
grep Remove the buffered reader. 2016-08-24 18:06:42 -04:00
src update 2016-08-05 00:10:58 -04:00
.gitignore initial commit 2016-02-27 11:07:26 -05:00
.travis.yml initial commit 2016-02-27 11:07:26 -05:00
appveyor.yml initial commit 2016-02-27 11:07:26 -05:00
Cargo.toml refactor progress 2016-06-20 16:55:13 -04:00
COPYING initial commit 2016-02-27 11:07:26 -05:00
ctags.rust initial commit 2016-02-27 11:07:26 -05:00
LICENSE-MIT initial commit 2016-02-27 11:07:26 -05:00
Makefile makefile 2016-03-10 21:03:13 -05:00
README.md add readme 2016-03-10 21:02:08 -05:00
session.vim initial commit 2016-02-27 11:07:26 -05:00
UNLICENSE initial commit 2016-02-27 11:07:26 -05:00

rep

grep, written in Rust using the regex crate.