1
0
mirror of https://github.com/sharkdp/bat synced 2026-07-28 17:51:44 +00: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
+1 -1
View File
@@ -23,7 +23,7 @@ use bat::{
line_range::{HighlightedLineRanges, LineRange, LineRanges},
style::{OutputComponent, OutputComponents, OutputWrap},
syntax_mapping::SyntaxMapping,
Config, PagingMode,
config::{Config, PagingMode},
};
fn is_truecolor_terminal() -> bool {
+1 -1
View File
@@ -32,7 +32,7 @@ use bat::{
errors::*,
inputfile::InputFile,
style::{OutputComponent, OutputComponents},
Config,
config::Config,
};
fn run_cache_subcommand(matches: &clap::ArgMatches) -> Result<()> {