From 365567b3c6d0ec5c451f4705c3d8ea8ee4f99264 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 4 Jul 2024 10:54:45 -0700 Subject: [PATCH] terminal: increase std cap for now until we implement resize --- src/terminal/page.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/terminal/page.zig b/src/terminal/page.zig index 7a6a76a98..55924e73f 100644 --- a/src/terminal/page.zig +++ b/src/terminal/page.zig @@ -1231,8 +1231,8 @@ pub const std_capacity: Capacity = .{ .cols = 215, .rows = 215, .styles = 128, - .hyperlink_cells = 32, // TODO: think about these numbers - .hyperlink_entries = 4, + .hyperlink_cells = 64, // TODO: think about these numbers + .hyperlink_entries = 32, .grapheme_bytes = 8192, .string_bytes = 2048, };