interface Command {
    aceCommandGroup?: string;
    action?: string;
    bindKey?: string | { mac?: string; win?: string };
    description?: string;
    exec?: (editor?: any, args?: any) => void;
    isAvailable?: (editor: Editor) => boolean;
    level?: number;
    multiSelectAction?: Function | "forEach" | "forEachLine";
    name?: string;
    passEvent?: boolean;
    readOnly?: boolean;
    scrollIntoView?:
        | true
        | "cursor"
        | "center"
        | "selectionPart"
        | "animate"
        | "selection"
        | "none";
}

Hierarchy (View Summary)

Properties

aceCommandGroup?: string
action?: string
bindKey?: string | { mac?: string; win?: string }
description?: string
exec?: (editor?: any, args?: any) => void
isAvailable?: (editor: Editor) => boolean
level?: number
multiSelectAction?: Function | "forEach" | "forEachLine"
name?: string
passEvent?: boolean
readOnly?: boolean
scrollIntoView?:
    | true
    | "cursor"
    | "center"
    | "selectionPart"
    | "animate"
    | "selection"
    | "none"