From f8f0e03ea55b79aa62cbed940e234180ab8cdd1c Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 25 Jul 2019 11:28:05 +0200 Subject: [PATCH] tweak name for internal delegation command --- src/vs/workbench/api/common/extHostCommands.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/api/common/extHostCommands.ts b/src/vs/workbench/api/common/extHostCommands.ts index 4cef83323b0..19e4d5655f1 100644 --- a/src/vs/workbench/api/common/extHostCommands.ts +++ b/src/vs/workbench/api/common/extHostCommands.ts @@ -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); } -- GitLab