terminal/new: adjust grapheme bytes default up

This commit is contained in:
Mitchell Hashimoto
2024-02-23 22:08:29 -08:00
parent 24dab9d01e
commit 73f07725da

View File

@ -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.