From e8b853ed25a17abeb3ba41d07df2e25937d57a8a Mon Sep 17 00:00:00 2001 From: TcMits Date: Wed, 10 Sep 2025 12:03:59 +0700 Subject: [PATCH] pretty mode's table need a line break --- cli/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/app.rs b/cli/app.rs index b712c3df9..91de13ff7 100644 --- a/cli/app.rs +++ b/cli/app.rs @@ -798,7 +798,7 @@ impl Limbo { } if !table.is_empty() { - write!(self, "{table}")?; + writeln!(self, "{table}")?; } } OutputMode::Line => {