From 2682e5fe567183603d411545f8d8f4bd0950b8de Mon Sep 17 00:00:00 2001 From: wubx Date: Thu, 30 May 2024 16:05:51 +0800 Subject: [PATCH] fix(cli): change max_display_rows 40 to 1000 (#435) change max_display_rows 40 to 1000 Co-authored-by: sundyli <543950155@qq.com> --- cli/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/config.rs b/cli/src/config.rs index fce933bdc..312659eca 100644 --- a/cli/src/config.rs +++ b/cli/src/config.rs @@ -243,7 +243,7 @@ impl Default for Settings { quote_style: OutputQuoteStyle::Necessary, expand: ExpandMode::Auto, show_progress: false, - max_display_rows: 40, + max_display_rows: 1000, max_col_width: 1024 * 1024, max_width: 1024 * 1024, show_stats: false,