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    matcher::{LineTerminator, Match, Matcher, NoError},
12    searcher::{Searcher, SearcherBuilder},
13    sink::{Sink, SinkError, SinkFinish, SinkMatch},
14};
15
16pub mod lines;
17pub mod matcher;
18mod searcher;
19mod sink;