From 597a30f063741bdad6199fd00d882e368fdb3d1c Mon Sep 17 00:00:00 2001 From: Discookie Date: Mon, 8 Apr 2024 09:33:20 +0000 Subject: [PATCH] Fix `codechecker.executor.showOutput` command --- src/editor/executor.ts | 2 +- src/editor/logger.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/editor/executor.ts b/src/editor/executor.ts index 6dce4ce..ccfa536 100644 --- a/src/editor/executor.ts +++ b/src/editor/executor.ts @@ -36,7 +36,7 @@ export class ExecutorAlerts { init() { this.statusBarItem.text = 'CodeChecker: not running'; - this.statusBarItem.command = { title: '', command: 'codechecker.logging.showOutput' }; + this.statusBarItem.command = { title: '', command: 'codechecker.executor.showOutput' }; this.statusBarItem.show(); } diff --git a/src/editor/logger.ts b/src/editor/logger.ts index d2bb31f..1be87d8 100644 --- a/src/editor/logger.ts +++ b/src/editor/logger.ts @@ -8,7 +8,7 @@ export class LoggerPanel { ctx.subscriptions.push(this.window = window.createOutputChannel('CodeChecker')); ctx.subscriptions.push( - commands.registerCommand('codechecker.logging.showOutput', this.showOutputTab, this) + commands.registerCommand('codechecker.executor.showOutput', this.showOutputTab, this) ); ExtensionApi.executorBridge.bridgeMessages(this.window.append, this.window, ctx.subscriptions);