Member Junction
    Preparing search index...

    '/' — commands: switch apps and jump to their nav items. Absorbs the old Ctrl+/ app command palette: same fuzzy scoring philosophy (exact > starts-with > contains > description > initials) and the same UserInfoEngine-persisted recent apps (via CommandPaletteService, which stays as the recents engine).

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    context: OmnibarContext = {}
    Key: "omnibar-commands" = 'omnibar-commands'

    Stable identifier for this provider (e.g. 'agent-mentions'). Used as the ClassFactory registration key and by ExcludedTriggerKeys filtering.

    ModeLabel: "Go to App" = 'Go to App'

    Human label for the palette's mode badge while this provider is active.

    Placeholder: "App or destination…" = 'App or destination…'

    Placeholder shown in the input while this provider's trigger is active.

    Priority: 40

    Ordering weight — higher runs first. When multiple providers share a TriggerChar, results are concatenated in priority order (then Key order).

    TriggerChar: "/" = '/'

    The single character that opens this provider's autocomplete (e.g. '@').

    Methods

    • Optional warm-up hook, invoked once by the editor when it initializes with this provider active. Default is a no-op; override to pre-load caches so the first keystroke is fast. Must be safe to call repeatedly and concurrently.

      Parameters

      Returns Promise<void>