iSearchStartCommands: ({
    bindKey: {
        mac: string;
        win: string;
    };
    exec: ((editor, options) => void);
    name: string;
    readOnly: boolean;
} | {
    bindKey?: undefined;
    exec: ((editor, jumpToNext) => void);
    name: string;
    readOnly: boolean;
})[]

Generated using TypeDoc