From 13c75a19d182ac40c6459a46e4725efbe84f6fb8 Mon Sep 17 00:00:00 2001 From: Eric Wheeler Date: Fri, 7 Mar 2025 19:11:28 -0800 Subject: [PATCH] Revert "Disable terminal actions for now" This reverts commit 93a394dd936f8583beffcd325155c9f7dab1a045 which has been fixed by PR #1365. Fixes: #1380 --- src/extension.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/extension.ts b/src/extension.ts index 5793db71c0..df18f9a22b 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -97,12 +97,7 @@ export function activate(context: vscode.ExtensionContext) { ) registerCodeActions(context) - - /** - * Temporary disabled until we have a better way to share the terminal - * manager. - */ - // registerTerminalActions(context) + registerTerminalActions(context) return createRooCodeAPI(outputChannel, sidebarProvider) }