Trilium Frontend API
    Preparing search index...

    Interface AddKeystrokeInfoGroupData

    A description of keystroke group accepted by the module:core/accessibility~Accessibility#addKeystrokeInfoGroup method.

    Groups narrow down the context in which the keystrokes are available. When categoryId is not specified, the group goes to the 'contentEditing' category (default).

    See module:core/accessibility~Accessibility#addKeystrokeInfoCategory and module:core/accessibility~Accessibility#addKeystrokeInfos.

    interface AddKeystrokeInfoGroupData {
        categoryId?: string;
        id: string;
        keystrokes?: KeystrokeInfoDefinition[];
        label?: string;
    }
    Index

    Properties

    categoryId?: string

    The category id the group belongs to.

    id: string

    The unique id of the group.

    Keystroke definitions within the group.

    label?: string

    The label of the group (optional).