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);