diff --git a/src/tui/mode/overlay/theme_palette.zig b/src/tui/mode/overlay/theme_palette.zig index 7b82706..e3af4a6 100644 --- a/src/tui/mode/overlay/theme_palette.zig +++ b/src/tui/mode/overlay/theme_palette.zig @@ -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; } diff --git a/src/tui/mode/vim.zig b/src/tui/mode/vim.zig index d13d16a..99eb1c3 100644 --- a/src/tui/mode/vim.zig +++ b/src/tui/mode/vim.zig @@ -111,5 +111,4 @@ const cmds_ = struct { //self.clamp(); } pub const delete_line_meta = .{ .description = "Delete the current line without copying" }; - };