Ace API Reference
    Preparing search index...

    Interface Command

    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
            | "center"
            | "animate"
            | "none"
            | "cursor"
            | "selectionPart"
            | "selection";
    }

    Hierarchy (View Summary)

    Index

    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
        | "center"
        | "animate"
        | "none"
        | "cursor"
        | "selectionPart"
        | "selection"