You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Request from the client to the server asking for contents of a URI having a custom scheme.
602
-
For example: "sourcekit-lsp:"
603
-
604
-
Enable the experimental client capability `"workspace/getReferenceDocument"` so that the server responds with reference document URLs for certain requests or commands whenever possible.
605
-
606
-
- params: `GetReferenceDocumentParams`
607
-
608
-
- result: `GetReferenceDocumentResponse`
609
-
610
-
```ts
611
-
exportinterfaceGetReferenceDocumentParams {
612
-
/**
613
-
* The `DocumentUri` of the custom scheme url for which content is required
614
-
*/
615
-
uri: DocumentUri;
616
-
}
617
-
618
-
/**
619
-
* Response containing `content` of `GetReferenceDocumentRequest`
0 commit comments