Bump version to 1.6.2

This commit is contained in:
Ryan Ward
2026-06-04 16:07:24 -05:00
parent 840bc4d244
commit 4ba9706e35
12 changed files with 54 additions and 61 deletions
@@ -12,9 +12,11 @@ pub struct Matcher {
keymap: Keymap,
/// Default binding validator that should run on every binding (irrespective of the [`Context`]
/// the binding was registered against).
#[cfg_attr(not(debug_assertions), allow(dead_code))]
default_binding_validator: Option<BindingValidatorFn>,
/// List of validators to be used during binding validation. Each binding validator validates
/// all of the bindings that match the [`Context`] it is paired with.
#[cfg_attr(not(debug_assertions), allow(dead_code))]
binding_validators: Vec<(Context, BindingValidatorFn)>,
/// Function to convert bindings that have a [`CustomTag`] trigger to one that has a
/// [`Keystroke`]-based trigger instead. If `None`, bindings are not converted.