a73cae2fd8
code-server enables running Visual Studio Code on a remote system and accessing it through a web browser. It provides a familiar development environment without requiring a local VS Code installation. WWW: https://github.com/coder/code-server Sponsored by: Netzkommune GmbH
13 lines
739 B
Plaintext
13 lines
739 B
Plaintext
--- lib/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/terminal.chatAgentTools.contribution.ts.orig
|
|
+++ lib/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/terminal.chatAgentTools.contribution.ts
|
|
@@ -193,7 +193,8 @@
|
|
}
|
|
}
|
|
registerWorkbenchContribution2(ChatAgentToolsContribution.ID, ChatAgentToolsContribution, WorkbenchPhase.AfterRestored);
|
|
-registerWorkbenchContribution2(AgentHostSandboxForwarder.ID, AgentHostSandboxForwarder, WorkbenchPhase.AfterRestored);
|
|
+// Disabled for code-server web runtime: agent host is not available.
|
|
+// registerWorkbenchContribution2(AgentHostSandboxForwarder.ID, AgentHostSandboxForwarder, WorkbenchPhase.AfterRestored);
|
|
|
|
// #endregion Contributions
|
|
|