diff --git a/src/vs/workbench/api/node/extHost.api.impl.ts b/src/vs/workbench/api/node/extHost.api.impl.ts index b774d54c2a6..2b10f6a4add 100644 --- a/src/vs/workbench/api/node/extHost.api.impl.ts +++ b/src/vs/workbench/api/node/extHost.api.impl.ts @@ -164,9 +164,9 @@ export class ExtHostAPIImplementation { }); }, executeCommand(id: string, ...args: any[]): Thenable { - return pluginHostCommands.executeCommand(id, args); + return pluginHostCommands.executeCommand(id, ...args); }, - getCommands(filterInternal: boolean = false):Thenable { + getCommands(filterInternal: boolean = false): Thenable { return pluginHostCommands.getCommands(filterInternal); } };