mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-09 22:31:08 +00:00
Merge pull request #1240 from RooVetGit/revert-1228-stop_removing_commas_from_terminal_output
Revert "Stop removing commas from terminal output"
This commit is contained in:
commit
5efb3c10d8
2 changed files with 3 additions and 5 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"roo-cline": patch
|
||||
---
|
||||
|
||||
Stop removing commas from terminal output
|
||||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue