From 73f07725da9f470d1fa6376c23b5328c9fbad5fa Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 23 Feb 2024 22:08:29 -0800 Subject: [PATCH] terminal/new: adjust grapheme bytes default up --- src/terminal/new/page.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/terminal/new/page.zig b/src/terminal/new/page.zig index ef696adec..e460553dd 100644 --- a/src/terminal/new/page.zig +++ b/src/terminal/new/page.zig @@ -330,10 +330,10 @@ pub const Page = struct { /// requirements. This is enough to support a very large number of cells. /// The standard capacity is chosen as the fast-path for allocation. pub const std_capacity: Capacity = .{ - .cols = 250, - .rows = 250, + .cols = 215, + .rows = 215, .styles = 128, - .grapheme_bytes = 1024, + .grapheme_bytes = 8192, }; /// The size of this page.