From 16216532d09d3fa46f0b3dc1bba24a04df1c8d7d Mon Sep 17 00:00:00 2001 From: Dhanji Prasanna Date: Fri, 10 Oct 2025 13:46:08 +1100 Subject: [PATCH] newline --- crates/g3-cli/src/ui_writer_impl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/g3-cli/src/ui_writer_impl.rs b/crates/g3-cli/src/ui_writer_impl.rs index 289870b..3438da6 100644 --- a/crates/g3-cli/src/ui_writer_impl.rs +++ b/crates/g3-cli/src/ui_writer_impl.rs @@ -60,6 +60,7 @@ impl UiWriter for ConsoleUiWriter { } fn print_tool_output_header(&self) { + println!(); // Now print the tool header with the most important arg in bold green if let Some(tool_name) = self.current_tool_name.lock().unwrap().as_ref() { let args = self.current_tool_args.lock().unwrap(); @@ -94,7 +95,6 @@ impl UiWriter for ConsoleUiWriter { } } } - // println!("┌─────"); } fn print_tool_output_line(&self, line: &str) {