mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-26 17:53:54 +01:00
Reformatted with cargo fmt
.
This commit is contained in:
parent
0ad09df7ab
commit
cc8186103b
@ -367,7 +367,8 @@ impl<'a> Printer for InteractivePrinter<'a> {
|
||||
match chunk {
|
||||
// ANSI escape passthrough.
|
||||
(text, true) => {
|
||||
let is_ansi_csi = text.chars().skip(1).nth(0).map_or(false, |c|c == '[');
|
||||
let is_ansi_csi =
|
||||
text.chars().skip(1).nth(0).map_or(false, |c| c == '[');
|
||||
|
||||
if is_ansi_csi && text.chars().last().map_or(false, |c| c == 'm') {
|
||||
// It's an ANSI SGR sequence.
|
||||
|
Loading…
Reference in New Issue
Block a user