Earlier quoted context omitted.
The popularity of ripgrep, ag, ack, etc., is an object lesson in "defaults matter." I don't say this in the prescriptive sense, i.e., "hey, you, you should care about defaults!", but rather, in the descriptive sense, i.e., "there are a lot of people out there that care about the defaults." The second lesson to learn is that people care about the difference between "results are instant" and "there is a bit of noticeab…
Have you considered problem of printing searched results to terminal? I saw it is detailed little bit in your blog, but one of the things that bothers me is - say I am searchin for string "foo" in a 2GB log file. There are usual number of matches, nothing unusual. But typically, I am not really looking for string "foo". I guess most users who are grepping log files are also looking for strings/text that appear slight…
rg foo -C 20 -p | less -R
Also, yuck, that command line. Glad I have those hidden behind shell scripts.