usecrate::services::hotkey::HotkeyRegistry;usecrate::services::hotkey::HotkeyScope;implHotkeyRegistry{/// Set the active scope for hotkey filtering.
////// # Arguments
////// * `scope` - The scope to set active, or `None` to clear
////// # Example
////// ```rust
/// use ratatui_toolkit::services::hotkey::{HotkeyRegistry, HotkeyScope};
////// let mut registry = HotkeyRegistry::new();
/// registry.set_active_scope(Some(HotkeyScope::Tab("Markdown")));
/// ```
pubfnset_active_scope(&mutself, scope:Option<HotkeyScope>){self.active_scope = scope;}}