branchdiff 0.63.8

Terminal UI showing unified diff of current branch vs its base
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod help;
mod warning;

pub use help::draw_help_modal;
pub use warning::draw_warning_banner;

pub mod prelude {
    pub use ratatui::{
        layout::Rect,
        style::{Color, Modifier, Style},
        text::{Line, Span},
        widgets::{Block, Borders, Clear, Paragraph},
        Frame,
    };
}