• Retrieves all shortcuts in a specific category; useful for UI organization by category.

    Parameters

    Returns Shortcut[]

    Array of shortcuts in the specified category.

    export function getShortcutsByCategory(category: ShortcutCategory): Shortcut[] {
    return SHORTCUTS.filter((shortcut) => shortcut.category === category);
    }