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