Interface TextSearchContext

A line of context surrounding a TextSearchMatch.

interface TextSearchContext {
    lineNumber: number;
    text: string;
    uri: Uri;
}

Properties

Properties

lineNumber: number

The line number of this line of context.

text: string

One line of text. previewOptions.charsPerLine applies to this

uri: Uri

The uri for the matching document.