sesaparcours
    Preparing search index...
    interface CmdOptions {
        caseSensitiveSearch?: boolean;
        charWidth?: number;
        clickTimeout?: number;
        commands?: commandsCmdFunction<Cmd<HTMLElement>>;
        enabled?: boolean;
        history?: boolean | "memory";
        historyFilter?: historyFilter;
        historySize?: number;
        holdRepeatTimeout?: number;
        holdTimeout?: number;
        keydown?: KeyEventHandler<Cmd<HTMLElement>>;
        keypress?: KeyEventHandler<Cmd<HTMLElement>>;
        mask?: string | boolean;
        mobileDelete?: boolean;
        mobileIngoreAutoSpace?: string[];
        name?: string;
        onCommandChange?: (this: Cmd, command: string) => void;
        onPaste?: (this: Cmd, value: string) => void | TypeOrPromise<string | Blob>;
        onPositionChange?: (position: number, display_position: number) => void;
        prompt?: cmdPrompt<Cmd<HTMLElement>>;
        repeatTimeoutKeys?: string[];
        tabindex?: number;
        tabs?: number;
        width?: number;
    }
    Index

    Properties

    caseSensitiveSearch?: boolean
    charWidth?: number
    clickTimeout?: number
    enabled?: boolean
    history?: boolean | "memory"
    historyFilter?: historyFilter
    historySize?: number
    holdRepeatTimeout?: number
    holdTimeout?: number
    mask?: string | boolean
    mobileDelete?: boolean
    mobileIngoreAutoSpace?: string[]
    name?: string
    onCommandChange?: (this: Cmd, command: string) => void
    onPaste?: (this: Cmd, value: string) => void | TypeOrPromise<string | Blob>
    onPositionChange?: (position: number, display_position: number) => void
    repeatTimeoutKeys?: string[]
    tabindex?: number
    tabs?: number
    width?: number