Theia API Documentation v1.65.0
    Preparing search index...

    The document highlight provider interface defines the contract between extensions and the word-highlight-feature.

    interface DocumentHighlightProvider {
        provideDocumentHighlights(
            document: TextDocument,
            position: Position,
            token: undefined | CancellationToken,
        ): ProviderResult<DocumentHighlight[]>;
    }
    Index

    Methods