Просмотр исходного кода

Disable terminal actions for now

cte 10 месяцев назад
Родитель
Сommit
93a394dd93
1 измененных файлов с 6 добавлено и 1 удалено
  1. 6 1
      src/extension.ts

+ 6 - 1
src/extension.ts

@@ -81,7 +81,12 @@ export function activate(context: vscode.ExtensionContext) {
 	)
 	)
 
 
 	registerCodeActions(context)
 	registerCodeActions(context)
-	registerTerminalActions(context)
+
+	/**
+	 * Temporary disabled until we have a better way to share the terminal
+	 * manager.
+	 */
+	// registerTerminalActions(context)
 
 
 	return createClineAPI(outputChannel, sidebarProvider)
 	return createClineAPI(outputChannel, sidebarProvider)
 }
 }