mirror of
https://github.com/sharkdp/bat.git
synced 2025-04-14 23:00:37 +01:00
Leave blank lines blank terminal output.
Would add some ANSI colour codes previously.
This commit is contained in:
parent
83dc8468b0
commit
3523f60299
@ -27,6 +27,10 @@ pub fn as_terminal_escaped(
|
|||||||
italics: bool,
|
italics: bool,
|
||||||
background_color: Option<highlighting::Color>,
|
background_color: Option<highlighting::Color>,
|
||||||
) -> String {
|
) -> String {
|
||||||
|
if text.is_empty() {
|
||||||
|
return text.to_string();
|
||||||
|
}
|
||||||
|
|
||||||
let mut style = if !colored {
|
let mut style = if !colored {
|
||||||
Style::default()
|
Style::default()
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user