fix: show *all* keybinds in hints window

Now that kp_ bindings don't need to be duplicated we can show them
all.
This commit is contained in:
CJ van den Berg 2025-12-16 13:49:43 +01:00
parent 36d9a7023d
commit f26e68b651
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -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 => {},
}