diff options
| author | Gal Zahavi <[email protected]> | 2025-08-19 16:03:51 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-19 23:03:51 +0000 |
| commit | f1575f6d8de2f4efa0805a2d11a4a421a1a8228f (patch) | |
| tree | 8977235b9a42983de3e76189f25ff055e9d28a83 /packages/cli/src/config/settingsSchema.ts | |
| parent | 0cc2a1e7ef904294fff982a4d75bf098b5b262f7 (diff) | |
feat(core): refactor shell execution to use node-pty (#6491)
Co-authored-by: Jacob Richman <[email protected]>
Diffstat (limited to 'packages/cli/src/config/settingsSchema.ts')
| -rw-r--r-- | packages/cli/src/config/settingsSchema.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/cli/src/config/settingsSchema.ts b/packages/cli/src/config/settingsSchema.ts index ebea3ad5..8c1b5191 100644 --- a/packages/cli/src/config/settingsSchema.ts +++ b/packages/cli/src/config/settingsSchema.ts @@ -277,6 +277,17 @@ export const SETTINGS_SCHEMA = { showInDialog: true, }, + shouldUseNodePtyShell: { + type: 'boolean', + label: 'Use node-pty for Shell Execution', + category: 'Shell', + requiresRestart: true, + default: false, + description: + 'Use node-pty for shell command execution. Fallback to child_process still applies.', + showInDialog: true, + }, + selectedAuthType: { type: 'string', label: 'Selected Auth Type', |
