add CompletionList to tackle #2224

This commit is contained in:
Johannes Rieken
2016-01-25 13:57:06 +01:00
parent 0608256464
commit 08fab0100d
7 changed files with 110 additions and 19 deletions

View File

@@ -82,6 +82,7 @@ export class ExtHostAPIImplementation {
SignatureHelp: typeof vscode.SignatureHelp;
CompletionItem: typeof vscode.CompletionItem;
CompletionItemKind: typeof vscode.CompletionItemKind;
CompletionList: typeof vscode.CompletionList;
IndentAction: typeof vscode.IndentAction;
OverviewRulerLane: typeof vscode.OverviewRulerLane;
TextEditorRevealType: typeof vscode.TextEditorRevealType;
@@ -124,6 +125,7 @@ export class ExtHostAPIImplementation {
this.SignatureHelp = extHostTypes.SignatureHelp;
this.CompletionItem = <any>extHostTypes.CompletionItem;
this.CompletionItemKind = <any>extHostTypes.CompletionItemKind;
this.CompletionList = extHostTypes.CompletionList;
this.ViewColumn = <any>extHostTypes.ViewColumn;
this.StatusBarAlignment = <any>extHostTypes.StatusBarAlignment;
this.IndentAction = <any>Modes.IndentAction;