zed/crates/fuzzy/src/fuzzy.rs
2023-09-28 06:55:49 -07:00

11 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};