mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-10-09 03:16:33 +00:00
config: RepeatableString is null-terminated now
This makes it easier for these values to interface with C APIs
This commit is contained in:
@@ -239,7 +239,7 @@ pub const DerivedConfig = struct {
|
||||
arena: ArenaAllocator,
|
||||
|
||||
font_thicken: bool,
|
||||
font_features: std.ArrayListUnmanaged([]const u8),
|
||||
font_features: std.ArrayListUnmanaged([:0]const u8),
|
||||
font_styles: font.Group.StyleStatus,
|
||||
cursor_color: ?terminal.color.RGB,
|
||||
cursor_text: ?terminal.color.RGB,
|
||||
@@ -251,7 +251,7 @@ pub const DerivedConfig = struct {
|
||||
selection_foreground: ?terminal.color.RGB,
|
||||
invert_selection_fg_bg: bool,
|
||||
min_contrast: f32,
|
||||
custom_shaders: std.ArrayListUnmanaged([]const u8),
|
||||
custom_shaders: std.ArrayListUnmanaged([:0]const u8),
|
||||
custom_shader_animation: bool,
|
||||
links: link.Set,
|
||||
|
||||
|
Reference in New Issue
Block a user