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:
parent
36d9a7023d
commit
f26e68b651
1 changed files with 2 additions and 2 deletions
|
|
@ -617,8 +617,8 @@ fn render(self: *Self) void {
|
||||||
|
|
||||||
switch (self.hint_mode) {
|
switch (self.hint_mode) {
|
||||||
.prefix => if (self.config_.enable_prefix_keyhints)
|
.prefix => if (self.config_.enable_prefix_keyhints)
|
||||||
@import("keyhints.zig").render_current_key_event_sequence(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, .no_keypad, self.current_theme()),
|
.all => @import("keyhints.zig").render_current_input_mode(self.allocator, .all, self.current_theme()),
|
||||||
.none => {},
|
.none => {},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue