diff options
| author | Zac Pullar-Strecker <zacmps@gmail.com> | 2020-09-01 11:38:32 +1200 |
|---|---|---|
| committer | Zac Pullar-Strecker <zacmps@gmail.com> | 2020-10-08 15:01:30 +1300 |
| commit | a14194b428efdb09cc45f9862ec34bef0038cd35 (patch) | |
| tree | d069e22d7d162c719fd3a8eb388fc7052e0e7668 /editors/code | |
| parent | 8c32bdea3662f4c65810e2d92569b0cb4e3872d9 (diff) | |
| download | rust-a14194b428efdb09cc45f9862ec34bef0038cd35.tar.gz rust-a14194b428efdb09cc45f9862ec34bef0038cd35.zip | |
Changes from review
Diffstat (limited to 'editors/code')
| -rw-r--r-- | editors/code/src/lsp_ext.ts | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/editors/code/src/lsp_ext.ts b/editors/code/src/lsp_ext.ts index 569e747bd47..56280471509 100644 --- a/editors/code/src/lsp_ext.ts +++ b/editors/code/src/lsp_ext.ts @@ -119,13 +119,4 @@ export interface CommandLinkGroup { commands: CommandLink[]; } -export interface DocumentationLink { - remote: string; -} - -export interface OpenDocsParams { - textDocument: lc.TextDocumentIdentifier; - position: lc.Position; -} - -export const openDocs = new lc.RequestType<OpenDocsParams, DocumentationLink, void>('rust-analyzer/openDocs'); +export const openDocs = new lc.RequestType<lc.TextDocumentPositionParams, String | void, void>('experimental/externalDocs'); |
