feat(coding-agent): add composable editor factory access

closes #3935
This commit is contained in:
Mario Zechner
2026-04-29 23:26:25 +02:00
parent c1dd6082ee
commit d698647b12
7 changed files with 36 additions and 7 deletions

View File

@@ -271,6 +271,11 @@ export async function runRpcMode(runtimeHost: AgentSessionRuntime): Promise<neve
// Custom editor components not supported in RPC mode
},
getEditorComponent() {
// Custom editor components not supported in RPC mode
return undefined;
},
get theme() {
return theme;
},