From f26e68b651e41e6daaf765546cb275f2a3c6f448 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Tue, 16 Dec 2025 13:49:43 +0100 Subject: [PATCH] fix: show *all* keybinds in hints window Now that kp_ bindings don't need to be duplicated we can show them all. --- src/tui/tui.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tui/tui.zig b/src/tui/tui.zig index 0707d84..c2fcf45 100644 --- a/src/tui/tui.zig +++ b/src/tui/tui.zig @@ -617,8 +617,8 @@ fn render(self: *Self) void { switch (self.hint_mode) { .prefix => if (self.config_.enable_prefix_keyhints) - @import("keyhints.zig").render_current_key_event_sequence(self.allocator, .no_keypad, self.current_theme()), - .all => @import("keyhints.zig").render_current_input_mode(self.allocator, .no_keypad, self.current_theme()), + @import("keyhints.zig").render_current_key_event_sequence(self.allocator, .all, self.current_theme()), + .all => @import("keyhints.zig").render_current_input_mode(self.allocator, .all, self.current_theme()), .none => {}, }