diff --git a/src/printer.rs b/src/printer.rs index d8fdcc8b..cb13c91e 100644 --- a/src/printer.rs +++ b/src/printer.rs @@ -303,12 +303,11 @@ impl<'a> Printer for InteractivePrinter<'a> { let title = "8<"; let title_count = title.chars().count(); - let snip_left = - "─ ".repeat((self.config.term_width - panel_count - (title_count / 2)) / 4); + let snip_left = "─ ".repeat((self.config.term_width - panel_count - (title_count / 2)) / 4); let snip_left_count = snip_left.chars().count(); // Can't use .len() with Unicode. - let snip_right = " ─" - .repeat((self.config.term_width - panel_count - snip_left_count - title_count) / 2); + let snip_right = + " ─".repeat((self.config.term_width - panel_count - snip_left_count - title_count) / 2); write!( handle,