Skip to content

DocumentHighlightProvider

原文链接

https://microsoft.github.io/monaco-editor/docs.html#interfaces/languages.DocumentHighlightProvider.html

文档高亮显示提供程序接口定义了扩展和单词高亮显示功能之间的约定。

ts
interface DocumentHighlightProvider {
    provideDocumentHighlights(model, position, token): ProviderResult<DocumentHighlight[]>;
}

provideDocumentHighlights