tij 0.4.16

Text-mode interface for Jujutsu - a TUI for jj version control
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Reusable UI widgets

mod error_banner;
mod help_panel;
mod placeholder;
mod status_bar;

pub use error_banner::render_error_banner;
pub use help_panel::{matching_line_indices, render_help_panel};
pub use placeholder::render_placeholder;
pub use status_bar::{
    render_blame_status_bar, render_diff_status_bar, render_status_hints, status_hints_height,
};