I use this tool regularly, thanks for publishing it!
While using it, I often need to use things like cargo llvm-lines | rg my_crate::module:: to filter
the output and avoid being drowned by things I'm not (yet) trying to improve.
The default of the previous solution is that it strips the header and will still pipe the entire
output to rg when only 10% of it are useful to me.
This adds a dependency on regex, and using the tool itself:
I use this tool regularly, thanks for publishing it!
While using it, I often need to use things like
cargo llvm-lines | rg my_crate::module::
to filter the output and avoid being drowned by things I'm not (yet) trying to improve.The default of the previous solution is that it strips the header and will still pipe the entire output to
rg
when only 10% of it are useful to me.This adds a dependency on
regex
, and using the tool itself: