Disable terminal actions for now

This commit is contained in:
cte 2025-03-04 15:32:32 -08:00
parent 9ffd389f23
commit 93a394dd93

View file

@ -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)
}