cosmetic tool call stuff

This commit is contained in:
Dhanji Prasanna
2025-10-10 14:18:35 +11:00
parent 426a9b88a9
commit 57b7bcb0de
2 changed files with 32 additions and 31 deletions

View File

@@ -98,12 +98,12 @@ impl UiWriter for ConsoleUiWriter {
}
fn print_tool_output_line(&self, line: &str) {
println!("{}", line);
println!("\x1b[2m{}\x1b[0m", line);
}
fn print_tool_output_summary(&self, hidden_count: usize) {
println!(
"│ ... ({} more line{})",
"\x1b[2m... ({} more line{})\x1b[0m",
hidden_count,
if hidden_count == 1 { "" } else { "s" }
);