Skip to content

Commit dc83617

Browse files
authored
Revert "Stop removing commas from terminal output"
1 parent 8f7814b commit dc83617

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.changeset/sour-parents-hug.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/integrations/terminal/TerminalProcess.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ 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+
113116
// 2. Set isHot depending on the command
114117
// Set to hot to stall API requests until terminal is cool again
115118
this.isHot = true

0 commit comments

Comments
 (0)