Interface TextSearchMatch

A match from a text search

interface TextSearchMatch {
    preview: TextSearchMatchPreview;
    ranges: Range | Range[];
    uri: Uri;
}

Properties

Properties

A preview of the text match.

ranges: Range | Range[]

The range of the match within the document, or multiple ranges for multiple matches.

uri: Uri

The uri for the matching document.