1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-01 19:02:22 +01:00

Easier configuration of style components

This commit is contained in:
sharkdp
2020-04-22 21:16:30 +02:00
committed by David Peter
parent 7a87315b94
commit 6a124591df
4 changed files with 67 additions and 9 deletions

View File

@@ -32,13 +32,12 @@ mod output;
mod preprocessor;
mod pretty_printer;
pub(crate) mod printer;
pub(crate) mod style;
pub mod style;
pub(crate) mod syntax_mapping;
mod terminal;
pub(crate) mod wrapping;
pub use line_range::LineRange;
pub use pretty_printer::PrettyPrinter;
pub use style::{StyleComponent, StyleComponents};
pub use syntax_mapping::{MappingTarget, SyntaxMapping};
pub use wrapping::WrappingMode;