Interface NotebookEditorFindOptions

interface NotebookEditorFindOptions {
    jumpToMatch?: boolean;
    matchCase?: boolean;
    modifyIndex?: ((matches, index) => number);
    regex?: boolean;
    search?: string;
    wholeWord?: boolean;
}

Properties

jumpToMatch?: boolean
matchCase?: boolean
modifyIndex?: ((matches, index) => number)

Type declaration

regex?: boolean
search?: string
wholeWord?: boolean