Reformatted with `cargo fmt`.

This commit is contained in:
Ethan P 2019-05-08 19:36:28 -07:00 committed by David Peter
parent 0ad09df7ab
commit cc8186103b
1 changed files with 2 additions and 1 deletions

View File

@ -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.