interface CodeEditorSearchOptions {
    captureMatches?: boolean;
    isRegex?: boolean;
    matchCase?: boolean;
    searchOnlyEditableRange?: boolean;
    wordSeparators?: null | string;
}

Properties

captureMatches?: boolean

The result will contain the captured groups.

CodeEditorSearchOptions

isRegex?: boolean

Used to indicate that searchString is a regular expression.

CodeEditorSearchOptions

matchCase?: boolean

Force the matching to match lower/upper case exactly.

CodeEditorSearchOptions

searchOnlyEditableRange?: boolean

Limit the searching to only search inside the editable range of the model.

CodeEditorSearchOptions

wordSeparators?: null | string

Force the matching to match entire words only. Pass null otherwise.

CodeEditorSearchOptions

""