diff options
-rw-r--r-- | editors/code/src/commands/line_buffer.ts | 16 | ||||
-rw-r--r-- | editors/code/src/status_display.ts | 4 |
2 files changed, 2 insertions, 18 deletions
diff --git a/editors/code/src/commands/line_buffer.ts b/editors/code/src/commands/line_buffer.ts deleted file mode 100644 index fb5b9f7f2..000000000 --- a/editors/code/src/commands/line_buffer.ts +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | export class LineBuffer { | ||
2 | private outBuffer: string = ''; | ||
3 | |||
4 | public processOutput(chunk: string, cb: (line: string) => void) { | ||
5 | this.outBuffer += chunk; | ||
6 | let eolIndex = this.outBuffer.indexOf('\n'); | ||
7 | while (eolIndex >= 0) { | ||
8 | // line includes the EOL | ||
9 | const line = this.outBuffer.slice(0, eolIndex + 1); | ||
10 | cb(line); | ||
11 | this.outBuffer = this.outBuffer.slice(eolIndex + 1); | ||
12 | |||
13 | eolIndex = this.outBuffer.indexOf('\n'); | ||
14 | } | ||
15 | } | ||
16 | } | ||
diff --git a/editors/code/src/status_display.ts b/editors/code/src/status_display.ts index 48cf0655b..ed8573f02 100644 --- a/editors/code/src/status_display.ts +++ b/editors/code/src/status_display.ts | |||
@@ -28,11 +28,11 @@ export class StatusDisplay implements vscode.Disposable { | |||
28 | if (this.packageName) { | 28 | if (this.packageName) { |
29 | this.statusBarItem!.text = `cargo ${this.command} [${ | 29 | this.statusBarItem!.text = `cargo ${this.command} [${ |
30 | this.packageName | 30 | this.packageName |
31 | }] ${this.frame()}`; | 31 | }] ${this.frame()}`; |
32 | } else { | 32 | } else { |
33 | this.statusBarItem!.text = `cargo ${ | 33 | this.statusBarItem!.text = `cargo ${ |
34 | this.command | 34 | this.command |
35 | } ${this.frame()}`; | 35 | } ${this.frame()}`; |
36 | } | 36 | } |
37 | }, 300); | 37 | }, 300); |
38 | 38 | ||