usecrate::services::hotkey::HotkeyRegistry;implHotkeyRegistry{/// Create a new hotkey registry.
////// # Returns
////// A new `HotkeyRegistry` instance with empty hotkey list and no active scope.
////// # Example
////// ```rust
/// use ratatui_toolkit::services::hotkey::HotkeyRegistry;
////// let registry = HotkeyRegistry::new();
/// ```
pubfnnew()->Self{Self{
hotkeys:Vec::new(),
active_scope:None,}}}