refactor: lots more writergate fixes - first successful build

This commit is contained in:
CJ van den Berg 2025-09-25 22:01:29 +02:00
parent 5094aa8c85
commit bf0d4402ea
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
48 changed files with 404 additions and 413 deletions

View file

@ -753,9 +753,9 @@ pub fn get_or_create_namespace_config_file(allocator: std.mem.Allocator, namespa
const KeyEventSequenceFmt = struct {
key_events: []const KeyEvent,
pub fn format(self: @This(), comptime _: []const u8, _: std.fmt.FormatOptions, writer: anytype) !void {
pub fn format(self: @This(), writer: anytype) !void {
for (self.key_events) |key_event|
try writer.print(" {}", .{input.key_event_short_fmt(key_event)});
try writer.print(" {f}", .{input.key_event_short_fmt(key_event)});
}
};