mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
fix #14223
This commit is contained in:
@@ -207,8 +207,8 @@ export class CommandsConverter {
|
||||
}
|
||||
}
|
||||
|
||||
private _executeConvertedCommand([id]: number[]) {
|
||||
const actualCmd = this._heap.get<vscode.Command>(id);
|
||||
private _executeConvertedCommand(...args: any[]) {
|
||||
const actualCmd = this._heap.get<vscode.Command>(args[0]);
|
||||
return this._commands.executeCommand(actualCmd.command, ...actualCmd.arguments);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user