fix(coding-agent): use shell for external editor on windows closes #1925
This commit is contained in:
@@ -2817,6 +2817,7 @@ export class InteractiveMode {
|
||||
// Spawn editor synchronously with inherited stdio for interactive editing
|
||||
const result = spawnSync(editor, [...editorArgs, tmpFile], {
|
||||
stdio: "inherit",
|
||||
shell: process.platform === "win32",
|
||||
});
|
||||
|
||||
// On successful exit (status 0), replace editor content
|
||||
|
||||
Reference in New Issue
Block a user