* Select all text in the terminal
()
| 242 | * Select all text in the terminal |
| 243 | */ |
| 244 | selectAll(): void { |
| 245 | const dims = this.wasmTerm.getDimensions(); |
| 246 | const viewportY = this.getViewportY(); |
| 247 | this.selectionStart = { col: 0, absoluteRow: viewportY }; |
| 248 | this.selectionEnd = { col: dims.cols - 1, absoluteRow: viewportY + dims.rows - 1 }; |
| 249 | this.requestRender(); |
| 250 | this.selectionChangedEmitter.fire(); |
| 251 | } |
| 252 | |
| 253 | /** |
| 254 | * Select text at specific column and row with length |
nothing calls this directly
no test coverage detected