()
| 640 | } |
| 641 | |
| 642 | getScrollbackContent(): string { |
| 643 | if (!this.terminal) { |
| 644 | return ""; |
| 645 | } |
| 646 | const buffer = this.terminal.buffer.active; |
| 647 | const lines = bufferLinesToText(buffer, 0, buffer.length); |
| 648 | return lines.join("\n"); |
| 649 | } |
| 650 | } |
no test coverage detected