mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 10:38:59 +01:00
fix regression with command args
This commit is contained in:
@@ -164,9 +164,9 @@ export class ExtHostAPIImplementation {
|
||||
});
|
||||
},
|
||||
executeCommand<T>(id: string, ...args: any[]): Thenable<T> {
|
||||
return pluginHostCommands.executeCommand(id, args);
|
||||
return pluginHostCommands.executeCommand(id, ...args);
|
||||
},
|
||||
getCommands(filterInternal: boolean = false):Thenable<string[]> {
|
||||
getCommands(filterInternal: boolean = false): Thenable<string[]> {
|
||||
return pluginHostCommands.getCommands(filterInternal);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user