You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could we make all fields public? For instance, only _ is a legal delimiter in my case but I have no way to set that:
pubstructConfig{/// Characters that act as delimiters and provide bonus/// for matching the following charpub(crate)delimiter_chars:&'static [u8],/// Extra bonus for word boundary after whitespace character or beginning of the stringpub(crate)bonus_boundary_white:u16,/// Extra bonus for word boundary after slash, colon, semi-colon, and commapub(crate)bonus_boundary_delimiter:u16,pub(crate)initial_char_class:CharClass,/// Whether to normalize latin script characters to ASCII (enabled by default)pubnormalize:bool,/// whether to ignore casingpubignore_case:bool,/// Whether to provide a bonus to matches by their distance from the start/// of the haystack. The bonus is fairly small compared to the normal gap/// penalty to avoid messing with the normal score heuristic. This setting/// is not turned on by default and only recommended for autocompletion/// usecases where the expectation is that the user is typing the entire/// match. For a full fzf-like fuzzy matcher/picker word segmentation and/// explicit prefix literals should be used instead.pubprefer_prefix:bool,}
See title.
There's set_match_paths, but it doesn't take a bool.
The text was updated successfully, but these errors were encountered: