zed/crates/fuzzy2/src/fuzzy2.rs
Antonio Scandurra 56462ef793 Checkpoint
2023-10-23 10:59:29 +02:00

10 lines
265 B
Rust

mod char_bag;
mod matcher;
mod paths;
mod strings;
pub use char_bag::CharBag;
pub use paths::{
match_fixed_path_set, match_path_sets, PathMatch, PathMatchCandidate, PathMatchCandidateSet,
};
pub use strings::{match_strings, StringMatch, StringMatchCandidate};