mirror of
https://github.com/sharkdp/bat
synced 2024-11-04 18:00:24 +00:00
36 lines
963 B
Rust
36 lines
963 B
Rust
use bat::{
|
|
assets::HighlightingAssets,
|
|
controller::Controller,
|
|
inputfile::InputFile,
|
|
style::{OutputComponent, OutputComponents},
|
|
config::Config,
|
|
};
|
|
use console::Term;
|
|
use std::process;
|
|
|
|
fn main() {
|
|
let files = std::env::args_os().skip(1).collect::<Vec<_>>();
|
|
|
|
if files.is_empty() {
|
|
eprintln!("No input files specified");
|
|
process::exit(1);
|
|
}
|
|
|
|
let config = Config {
|
|
term_width: Term::stdout().size().1 as usize,
|
|
colored_output: true,
|
|
true_color: true,
|
|
output_components: OutputComponents::new(&[
|
|
OutputComponent::Header,
|
|
OutputComponent::Grid,
|
|
OutputComponent::Numbers,
|
|
]),
|
|
files: files.iter().map(|file| InputFile::Ordinary(file)).collect(),
|
|
theme: "1337".into(),
|
|
..Default::default()
|
|
};
|
|
let assets = HighlightingAssets::from_binary();
|
|
|
|
Controller::new(&config, &assets).run().expect("no errors");
|
|
}
|