refactor: run zig fmt

This commit is contained in:
CJ van den Berg 2024-12-11 12:56:32 +01:00
parent 9fba9eba3c
commit d08737c0fe
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 1 additions and 2 deletions

View file

@ -37,7 +37,7 @@ pub fn load_entries(palette: *Type) !usize {
if (previous_theme) |theme_name| if (std.mem.eql(u8, theme.name, theme_name)) {
palette.initial_selected = idx;
};
longest_hint = @max(longest_hint, theme.name.len);
longest_hint = @max(longest_hint, theme.name.len);
}
return longest_hint;
}

View file

@ -111,5 +111,4 @@ const cmds_ = struct {
//self.clamp();
}
pub const delete_line_meta = .{ .description = "Delete the current line without copying" };
};