From 9cdaea77849f12505b967276dbcaccea4705dcf3 Mon Sep 17 00:00:00 2001 From: David Sanders Date: Wed, 29 Jan 2025 15:24:58 -0800 Subject: [PATCH] chore: use command prefix constant when registering command --- src/extension.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension.ts b/src/extension.ts index fde9da1..6e32783 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -65,7 +65,7 @@ function registerElectronBuildToolsCommands( context.subscriptions.push( vscode.commands.registerCommand( - "electron-build-tools.revealInElectronSidebar", + `${commandPrefix}.revealInElectronSidebar`, async (file: vscode.Uri) => { if (/.*\/electron\/patches\/.*\.patch$/.test(file.path)) { const patchesRoot = vscode.Uri.joinPath(electronRoot, "patches");