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

move Config struct to separate file

This commit is contained in:
sharkdp
2020-03-21 19:40:13 +01:00
committed by David Peter
parent 7e0115641d
commit 9b8ddb24d1
8 changed files with 99 additions and 99 deletions

View File

@@ -31,7 +31,7 @@ use crate::line_range::RangeCheckResult;
use crate::preprocessor::{expand_tabs, replace_nonprintable};
use crate::style::OutputWrap;
use crate::terminal::{as_terminal_escaped, to_ansi_color};
use crate::Config;
use crate::config::Config;
pub trait Printer {
fn print_header(&mut self, handle: &mut dyn Write, file: InputFile) -> Result<()>;