1/// A custom keybindings compatible struct. 2pub trait CustomKeybinding { 3 /// Create a new instance from the configuration keybindings. 4 fn new(key_bindings: &config::KeyBindings) -> Self; 5}