Przeglądaj źródła

Disable terminal actions for now

cte 10 miesięcy temu
rodzic
commit
93a394dd93
1 zmienionych plików z 6 dodań i 1 usunięć
  1. 6 1
      src/extension.ts

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