yolop 0.10.0

Yolop — a terminal coding agent built on everruns-runtime
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Alternate-screen renderer.
//!
//! Fullscreen mode deliberately shares the regular presentation renderer so
//! both modes keep the same transcript, composer, colors, layout, and status
//! bar. The mode remains responsible for alternate-screen lifecycle and
//! fullscreen scrolling in `app::run_tui`.

use ratatui::Frame;

use super::App;

pub(crate) fn draw(f: &mut Frame, app: &mut App) {
    super::render::draw_shared(f, app);
}