zed/crates/fuzzy/src/fuzzy.rs

11 lines
265 B
Rust
Raw Normal View History

mod char_bag;
2022-12-14 23:59:50 +00:00
mod matcher;
mod paths;
mod strings;
pub use char_bag::CharBag;
pub use paths::{
match_fixed_path_set, match_path_sets, PathMatch, PathMatchCandidate, PathMatchCandidateSet,
};
2022-12-14 23:59:50 +00:00
pub use strings::{match_strings, StringMatch, StringMatchCandidate};