项目文件夹

文件
2026-07-13 13:05:33 +08:00

6 行
257 B
TypeScript

export function buildFreshShellProbeInputSequence(command: string): readonly string[] {
// Why: Windows ConPTY can echo a startup Ctrl+C as literal "^C", which
// corrupts the following PowerShell command before the shell is ready.
return [command]
}