| 474 | |
| 475 | |
| 476 | class BufferControlColorProcessor(Processor): |
| 477 | def apply_transformation(self, transformation_input): |
| 478 | fragments = to_formatted_text( |
| 479 | ANSI(fragment_list_to_text(transformation_input.fragments)) |
| 480 | ) |
| 481 | return Transformation(fragments) |
| 482 | |
| 483 | |
| 484 | class InteractiveUI(BaseLiveTailUI): |