From 93a394dd936f8583beffcd325155c9f7dab1a045 Mon Sep 17 00:00:00 2001 From: cte Date: Tue, 4 Mar 2025 15:32:32 -0800 Subject: [PATCH] Disable terminal actions for now --- src/extension.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/extension.ts b/src/extension.ts index a05afa4651..b85c401117 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -81,7 +81,12 @@ export function activate(context: vscode.ExtensionContext) { ) registerCodeActions(context) - registerTerminalActions(context) + + /** + * Temporary disabled until we have a better way to share the terminal + * manager. + */ + // registerTerminalActions(context) return createClineAPI(outputChannel, sidebarProvider) }