resolveDocumentLink

abstract var resolveDocumentLink: (link: T, token: CancellationToken) -> ProviderResult<T>?(source)

Given a link fill in its target. This method is called when an incomplete link is selected in the UI. Providers can implement this method and return incomplete links (without target) from the {@linkcode DocumentLinkProvider.provideDocumentLinks provideDocumentLinks} method which often helps to improve performance.

Parameters

link

The link that is to be resolved.

token

A cancellation token.

Online Documentation