aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/rust-analyzer-api.ts
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-02-29 17:28:26 +0000
committerVeetaha <[email protected]>2020-03-07 12:08:35 +0000
commit6441988d84cc1f9d347d72a48d2b67b19dcb8cc9 (patch)
treeca960be502b6ac23a11a2a547cf2f1896d297f5a /editors/code/src/rust-analyzer-api.ts
parent0e6d066a2940c65af9171dff52304590cac4b95e (diff)
vscode: redesign inlay hints to be capable of handling multiple editors
Diffstat (limited to 'editors/code/src/rust-analyzer-api.ts')
-rw-r--r--editors/code/src/rust-analyzer-api.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/src/rust-analyzer-api.ts b/editors/code/src/rust-analyzer-api.ts
index 6a7aeb602..bd6e3ada0 100644
--- a/editors/code/src/rust-analyzer-api.ts
+++ b/editors/code/src/rust-analyzer-api.ts
@@ -98,8 +98,8 @@ export namespace InlayHint {
98 range: lc.Range; 98 range: lc.Range;
99 label: string; 99 label: string;
100 } 100 }
101 export type TypeHint = Common & { kind: Kind.TypeHint; } 101 export type TypeHint = Common & { kind: Kind.TypeHint };
102 export type ParamHint = Common & { kind: Kind.ParamHint; } 102 export type ParamHint = Common & { kind: Kind.ParamHint };
103} 103}
104export interface InlayHintsParams { 104export interface InlayHintsParams {
105 textDocument: lc.TextDocumentIdentifier; 105 textDocument: lc.TextDocumentIdentifier;