Revert "Stop removing commas from terminal output"

This commit is contained in:
Matt Rubens 2025-02-27 09:51:05 -05:00 committed by GitHub
parent 8f7814be92
commit dc83617b4d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 5 deletions

View file

@ -1,5 +0,0 @@
---
"roo-cline": patch
---
Stop removing commas from terminal output

View file

@ -110,6 +110,9 @@ export class TerminalProcess extends EventEmitter<TerminalProcessEvents> {
data = lines.join("\n")
}
// FIXME: right now it seems that data chunks returned to us from the shell integration stream contains random commas, which from what I can tell is not the expected behavior. There has to be a better solution here than just removing all commas.
data = data.replace(/,/g, "")
// 2. Set isHot depending on the command
// Set to hot to stall API requests until terminal is cool again
this.isHot = true