Skip to main content

fff_grep/
lib.rs

1/*!
2Simplified grep-searcher for fff.nvim.
3
4Provides line-oriented search over byte slices with optional multi-line support.
5Only `search_slice` is supported -- no file/reader/mmap search.
6*/
7
8#![deny(missing_docs)]
9
10pub use crate::{
11    searcher::{Searcher, SearcherBuilder},
12    sink::{Sink, SinkError, SinkFinish, SinkMatch},
13};
14
15pub mod lines;
16mod searcher;
17mod sink;