vscode: redesign inlay hints to be capable of handling multiple editors

This commit is contained in:
Veetaha 2020-02-29 19:28:26 +02:00
parent 0e6d066a29
commit 6441988d84
2 changed files with 272 additions and 105 deletions

View file

@ -98,8 +98,8 @@ export namespace InlayHint {
range: lc.Range;
label: string;
}
export type TypeHint = Common & { kind: Kind.TypeHint; }
export type ParamHint = Common & { kind: Kind.ParamHint; }
export type TypeHint = Common & { kind: Kind.TypeHint };
export type ParamHint = Common & { kind: Kind.ParamHint };
}
export interface InlayHintsParams {
textDocument: lc.TextDocumentIdentifier;