fix: ignore more modifier keys in keybind.log_keyhints_message
This commit is contained in:
parent
e3eac7e84b
commit
6c012d090b
1 changed files with 2 additions and 0 deletions
|
|
@ -773,6 +773,8 @@ const BindingSet = struct {
|
|||
input.key.left_control, input.key.right_control => return,
|
||||
input.key.left_alt, input.key.right_alt => return,
|
||||
input.key.left_shift, input.key.right_shift => return,
|
||||
input.key.left_super, input.key.right_super => return,
|
||||
input.key.iso_level_3_shift, input.key.iso_level_5_shift => return,
|
||||
else => {},
|
||||
};
|
||||
log.info("{f} is unbound, press C-? for key hints", .{current_key_event_sequence_fmt()});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue