zed/crates/fuzzy/src/fuzzy.rs

9 lines
236 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;
2022-12-14 23:59:50 +00:00
pub use paths::{match_path_sets, PathMatch, PathMatchCandidate, PathMatchCandidateSet};
pub use strings::{match_strings, StringMatch, StringMatchCandidate};