From e8b0909c3ffd9da1919116ba39ba50bdba5253ce Mon Sep 17 00:00:00 2001 From: "bobo.yang" Date: Thu, 28 Nov 2024 13:12:11 +0800 Subject: [PATCH] feat: Add auto-activation of chat panel - Implement ensureChatPanel function call in command - Enhance user experience by automatically opening plugin window - Improve workflow efficiency for DevChat interactions --- src/contributes/commands.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/contributes/commands.ts b/src/contributes/commands.ts index ce58cca..4319715 100644 --- a/src/contributes/commands.ts +++ b/src/contributes/commands.ts @@ -240,6 +240,9 @@ export function registerInstallCommandsCommand( await sendCommandListByDevChatRun(); } + + // Ensure the panel is activated + await ensureChatPanel(context); } );