(enabled: boolean)
| 352 | } |
| 353 | |
| 354 | setShowHardwareCursor(enabled: boolean): void { |
| 355 | if (this.showHardwareCursor === enabled) return; |
| 356 | this.showHardwareCursor = enabled; |
| 357 | if (!enabled) { |
| 358 | this.terminal.hideCursor(); |
| 359 | } |
| 360 | this.requestRender(); |
| 361 | } |
| 362 | |
| 363 | getClearOnShrink(): boolean { |
| 364 | return this.clearOnShrink; |
nothing calls this directly
no test coverage detected