Skip to content

Commit 4430863

Browse files
authored
Merge pull request #1228 from RooVetGit/stop_removing_commas_from_terminal_output
Stop removing commas from terminal output
2 parents 931af8f + 5c5bf85 commit 4430863

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.changeset/sour-parents-hug.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"roo-cline": patch
3+
---
4+
5+
Stop removing commas from terminal output

src/integrations/terminal/TerminalProcess.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,6 @@ export class TerminalProcess extends EventEmitter<TerminalProcessEvents> {
110110
data = lines.join("\n")
111111
}
112112

113-
// 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.
114-
data = data.replace(/,/g, "")
115-
116113
// 2. Set isHot depending on the command
117114
// Set to hot to stall API requests until terminal is cool again
118115
this.isHot = true

0 commit comments

Comments
 (0)