2
0
mirror of https://github.com/sharkdp/bat synced 2024-11-04 18:00:24 +00:00
bat/src/terminal.rs

43 lines
1.2 KiB
Rust
Raw Normal View History

extern crate ansi_colours;
2018-04-23 21:56:47 +00:00
use ansi_term::Colour::{Fixed, RGB};
use ansi_term::{self, Style};
2018-08-22 20:29:12 +00:00
use syntect::highlighting::{self, FontStyle};
2018-04-23 21:56:47 +00:00
pub fn to_ansi_color(color: highlighting::Color, true_color: bool) -> ansi_term::Colour {
if true_color {
RGB(color.r, color.g, color.b)
} else {
Fixed(ansi_colours::ansi256_from_rgb((color.r, color.g, color.b)))
}
}
2018-05-06 12:53:52 +00:00
pub fn as_terminal_escaped(
2018-05-12 13:40:47 +00:00
style: highlighting::Style,
2018-05-12 04:59:26 +00:00
text: &str,
2018-05-06 12:53:52 +00:00
true_color: bool,
colored: bool,
2018-11-01 16:32:04 +00:00
italics: bool,
2018-10-10 04:25:33 +00:00
background_color: Option<highlighting::Color>,
2018-05-06 12:53:52 +00:00
) -> String {
2018-10-10 04:25:33 +00:00
let mut style = if !colored {
2018-05-12 04:59:26 +00:00
Style::default()
} else {
let color = to_ansi_color(style.foreground, true_color);
2018-04-23 21:56:47 +00:00
2018-05-12 13:40:47 +00:00
if style.font_style.contains(FontStyle::BOLD) {
color.bold()
} else if style.font_style.contains(FontStyle::UNDERLINE) {
color.underline()
} else if italics && style.font_style.contains(FontStyle::ITALIC) {
2018-05-12 13:40:47 +00:00
color.italic()
} else {
color.normal()
}
2018-05-12 04:59:26 +00:00
};
2018-04-23 21:56:47 +00:00
2018-10-10 04:25:33 +00:00
style.background = background_color.map(|c| to_ansi_color(c, true_color));
style.paint(text).to_string()
2018-04-23 21:56:47 +00:00
}