/// Scope/context for a hotkey.
////// Defines the context in which a hotkey is active, allowing
/// for different hotkey sets in different parts of the application.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]pubenumHotkeyScope{/// Global hotkeys (always active).
Global,/// Modal hotkeys (active when modal is shown).
Modal(&'staticstr),/// Tab-specific hotkeys.
Tab(&'staticstr),/// Custom scope.
Custom(&'staticstr),}