fix: scrollback limit not being parsed correctly

This commit is contained in:
Adam Wolf
2024-12-29 10:29:01 -06:00
parent 64c393716a
commit a787e4b8fc

View File

@ -679,7 +679,7 @@ command: ?[]const u8 = null,
/// This is a future planned feature. /// This is a future planned feature.
/// ///
/// This can be changed at runtime but will only affect new terminal surfaces. /// 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 /// 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 /// it with an action. This can be used to match URLs, file paths, etc. Actions