From a787e4b8fc5b0b44ca1501341604534ace626d2d Mon Sep 17 00:00:00 2001 From: Adam Wolf Date: Sun, 29 Dec 2024 10:29:01 -0600 Subject: [PATCH] fix: scrollback limit not being parsed correctly --- 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 578da05798..25f11cf9cd 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -679,7 +679,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_000, // 10MB +@"scrollback-limit": usize = 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