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

Move back printer.rs and others into lib

others:
bin/bat/{controller,decorations,output,printer}.rs
This commit is contained in:
Fahmi Akbar Wildana
2019-10-06 08:44:14 +07:00
committed by David Peter
parent 26439b41d2
commit e542621125
6 changed files with 26 additions and 32 deletions

View File

@@ -19,11 +19,15 @@ extern crate syntect;
extern crate wild;
pub mod assets;
pub mod controller;
pub mod decorations;
pub mod diff;
pub mod dirs;
pub mod inputfile;
pub mod line_range;
pub mod output;
pub mod preprocessor;
pub mod printer;
pub mod style;
pub mod syntax_mapping;
pub mod terminal;
@@ -119,4 +123,4 @@ pub struct Config<'a> {
/// Lines to highlight
pub highlight_lines: Vec<usize>,
}
}