Testing #223154
export interface FindTextInFilesOptionsNew {
...
/**
* Options to specify the size of the result text preview.
*/
previewOptions?: {
/**
* The maximum number of lines in the preview.
* Only search providers that support multiline search will ever return more than one line in the match.
*/
matchLines?: number;
...
};
/**
* Number of lines of context to include before and after each match.
*/
surroundingContext?: number;
}
I don't understand the difference by reading the API doc. previewOptions sounds like it should be about the preview, not the match, but then it has a property called matchLines.
Testing #223154
I don't understand the difference by reading the API doc.
previewOptionssounds like it should be about the preview, not the match, but then it has a property calledmatchLines.