zed/crates/fuzzy2/src/fuzzy2.rs

11 lines
265 B
Rust
Raw Normal View History

2023-10-23 08:59:29 +00:00
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};