tweak name for internal delegation command

This commit is contained in:
Johannes Rieken
2019-07-25 11:28:05 +02:00
parent b35a0eea42
commit f8f0e03ea5

View File

@@ -222,7 +222,7 @@ export class CommandsConverter {
// --- conversion between internal and api commands
constructor(commands: ExtHostCommands) {
this._delegatingCommandId = `_internal_command_delegation_${Date.now()}`;
this._delegatingCommandId = `_vscode_delegate_cmd_${Date.now().toString(36)}`;
this._commands = commands;
this._commands.registerCommand(true, this._delegatingCommandId, this._executeConvertedCommand, this);
}