1
0
mirror of https://github.com/sharkdp/bat synced 2026-08-05 19:11:42 +00:00

Move config.rs into src/bin/bat/

This commit is contained in:
Fahmi Akbar Wildana
2019-10-06 08:44:14 +07:00
committed by David Peter
parent d3243903c0
commit a2ee753b25
4 changed files with 7 additions and 6 deletions
+4 -2
View File
@@ -4,7 +4,10 @@ use std::str::FromStr;
use atty::{self, Stream};
use crate::clap_app;
use crate::{
clap_app,
config::{get_args_from_config_file, get_args_from_env_var},
};
use clap::ArgMatches;
use wild;
@@ -15,7 +18,6 @@ use ansi_term;
use bat::{
assets::BAT_THEME_DEFAULT,
config::{get_args_from_config_file, get_args_from_env_var},
errors::*,
inputfile::InputFile,
line_range::{LineRange, LineRanges},