aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/lsp_ext.ts
diff options
context:
space:
mode:
authorZac Pullar-Strecker <[email protected]>2020-09-01 00:38:32 +0100
committerZac Pullar-Strecker <[email protected]>2020-10-08 03:01:30 +0100
commita14194b428efdb09cc45f9862ec34bef0038cd35 (patch)
treed069e22d7d162c719fd3a8eb388fc7052e0e7668 /editors/code/src/lsp_ext.ts
parent8c32bdea3662f4c65810e2d92569b0cb4e3872d9 (diff)
Changes from review
Diffstat (limited to 'editors/code/src/lsp_ext.ts')
-rw-r--r--editors/code/src/lsp_ext.ts11
1 files changed, 1 insertions, 10 deletions
diff --git a/editors/code/src/lsp_ext.ts b/editors/code/src/lsp_ext.ts
index 569e747bd..562804715 100644
--- a/editors/code/src/lsp_ext.ts
+++ b/editors/code/src/lsp_ext.ts
@@ -119,13 +119,4 @@ export interface CommandLinkGroup {
119 commands: CommandLink[]; 119 commands: CommandLink[];
120} 120}
121 121
122export interface DocumentationLink { 122export const openDocs = new lc.RequestType<lc.TextDocumentPositionParams, String | void, void>('experimental/externalDocs');
123 remote: string;
124}
125
126export interface OpenDocsParams {
127 textDocument: lc.TextDocumentIdentifier;
128 position: lc.Position;
129}
130
131export const openDocs = new lc.RequestType<OpenDocsParams, DocumentationLink, void>('rust-analyzer/openDocs');