1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-14 17:22:25 +01:00

Split modules (#86)

* Split diffing to separate module
* Split assets to separate module
This commit is contained in:
Ezinwa Okpoechi
2018-05-10 12:36:09 +02:00
committed by David Peter
parent 13a53d230b
commit 25cee002f9
4 changed files with 244 additions and 217 deletions

View File

@@ -1,9 +1,10 @@
use ansi_term::Style;
use diff::{LineChange, LineChanges};
use errors::*;
use std::io::Write;
use syntect::highlighting;
use terminal::as_terminal_escaped;
use {Colors, LineChange, LineChanges, Options};
use {Colors, Options};
const PANEL_WIDTH: usize = 7;