(data: string)
| 869 | } |
| 870 | |
| 871 | private consumeTerminalColorSchemeReport(data: string): boolean { |
| 872 | const scheme = parseTerminalColorSchemeReport(data); |
| 873 | if (!scheme) { |
| 874 | return false; |
| 875 | } |
| 876 | |
| 877 | for (const listener of this.terminalColorSchemeListeners) { |
| 878 | listener(scheme); |
| 879 | } |
| 880 | return true; |
| 881 | } |
| 882 | |
| 883 | private consumeCellSizeResponse(data: string): boolean { |
| 884 | // Response format: ESC [ 6 ; height ; width t |
no test coverage detected