1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2024-12-12 19:18:24 +02:00
ripgrep/grep
Andrew Gallant 7e5a590276
grep: small literal detection fix
This commit tweaks the inner literal detection heuristic such that if it
comes up with any literal that is all whitespace, then it's likely a bad
literal to look for since it's so common. Therefore, we simply reject the
inner literal optimization in this case and let the regex engine do its
thang.
2018-07-17 20:27:04 -04:00
..
src grep: small literal detection fix 2018-07-17 20:27:04 -04:00
Cargo.toml deps: update regex to 1.0 2018-05-07 13:07:30 -04:00
COPYING Add license files to each crate. 2017-03-12 16:57:15 -04:00
LICENSE-MIT Add license files to each crate. 2017-03-12 16:57:15 -04:00
README.md add readme 2016-09-13 21:15:10 -04:00
UNLICENSE Add license files to each crate. 2017-03-12 16:57:15 -04:00

grep

This is a library that provides grep-style line-by-line regex searching (with comparable performance to grep itself).