1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-01-08 13:23:34 +02:00
ripgrep/grep
Andrew Gallant 0222e024fe Fixes a bug with --smart-case.
This was a subtle bug, but the big picture was that the smart case
information wasn't being carried through to the literal extraction in
some cases. When this happened, it was possible to get back an incomplete
set of literals, which would therefore miss some valid matches.

The fix to this is to actually parse the regex and determine whether
smart case applies before doing anything else. It's a little extra work,
but parsing is pretty fast.

Fixes #199
2016-11-06 12:07:47 -05:00
..
src Fixes a bug with --smart-case. 2016-11-06 12:07:47 -05:00
Cargo.toml Move all gitignore matching to separate crate. 2016-10-29 20:48:59 -04:00
README.md add readme 2016-09-13 21:15:10 -04:00

grep

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