From 491fc08ea227de913c6dd32a8d985874bf315efe Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 14 Jan 2016 15:13:11 +0100 Subject: [PATCH] fix regression with command args --- src/vs/workbench/api/node/extHost.api.impl.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } };