Trevixal API
    Preparing search index...

    Interface ResolvedShortcut

    An action with its effective binding, as the dialog lists it.

    interface ResolvedShortcut {
        alternateKeys: string | null;
        customized: boolean;
        defaultKeys: string | null;
        display: string;
        group: string;
        keys: string | null;
        label: string;
        name: string;
        native: boolean;
    }
    Index
    alternateKeys: string | null

    The action's second binding, when it has one and is still bound.

    customized: boolean
    defaultKeys: string | null
    display: string

    Human-readable keys, e.g. Ctrl+Shift+L or ⌘⇧L; both bindings when there are two.

    group: string
    keys: string | null
    label: string
    name: string
    native: boolean