From aadd0d3d48afa3c6d604556d6b94c7aa03a20a39 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 14 Mar 2024 11:04:03 -0700 Subject: [PATCH] config: increase default max scrollback to 10MB --- src/config/Config.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index 568d43b2d..af69260dd 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -446,7 +446,7 @@ command: ?[]const u8 = null, /// This is a future planned feature. /// /// This can be changed at runtime but will only affect new terminal surfaces. -@"scrollback-limit": u32 = 10_000, +@"scrollback-limit": u32 = 10_000_000, // 10MB /// Match a regular expression against the terminal text and associate clicking /// it with an action. This can be used to match URLs, file paths, etc. Actions