repgrep 0.16.1

An interactive command line replacer for `ripgrep`.
1
2
3
4
5
6
7
8
9
10
11
12
pub mod item;
pub mod sub_item;

pub use item::*;
pub use sub_item::*;

#[macro_export]
macro_rules! format_line_number {
    ($content:expr) => {
        format!("{}:", $content)
    };
}