Răsfoiți Sursa

Revert "Disable terminal actions for now"

This reverts commit 93a394dd936f8583beffcd325155c9f7dab1a045 which has
been fixed by PR #1365.

Fixes: #1380
Eric Wheeler 9 luni în urmă
părinte
comite
13c75a19d1
1 a modificat fișierele cu 1 adăugiri și 6 ștergeri
  1. 1 6
      src/extension.ts

+ 1 - 6
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)
 }