mirror of https://github.com/Wilfred/difftastic/
Define a display submodule
parent
43a03d2939
commit
8fe0fc13b5
@ -1,11 +1,11 @@
|
||||
//! Inline, or "unified" diff display.
|
||||
|
||||
use crate::{
|
||||
context::{calculate_after_context, calculate_before_context, opposite_positions},
|
||||
display::context::{calculate_after_context, calculate_before_context, opposite_positions},
|
||||
display::style::{self, apply_colors},
|
||||
hunks::Hunk,
|
||||
lines::{format_line_num, MaxLine},
|
||||
options::DisplayOptions,
|
||||
style::{self, apply_colors},
|
||||
syntax::MatchedPos,
|
||||
};
|
||||
use owo_colors::colored::*;
|
||||
@ -0,0 +1,4 @@
|
||||
pub mod context;
|
||||
pub mod inline;
|
||||
pub mod side_by_side;
|
||||
pub mod style;
|
||||
Loading…
Reference in New Issue