mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
core: log when we see a leader
This commit is contained in:

committed by
Mitchell Hashimoto

parent
43176c750e
commit
9577c8b8b9
@ -1355,7 +1355,11 @@ pub fn keyCallback(
|
|||||||
break :binding;
|
break :binding;
|
||||||
};
|
};
|
||||||
const binding_action = switch (binding_entry) {
|
const binding_action = switch (binding_entry) {
|
||||||
.leader => break :binding, // TODO
|
.leader => {
|
||||||
|
// TODO
|
||||||
|
log.warn("sequenced keybinds are not supported yet", .{});
|
||||||
|
break :binding;
|
||||||
|
},
|
||||||
.action, .action_unconsumed => |action| action,
|
.action, .action_unconsumed => |action| action,
|
||||||
};
|
};
|
||||||
const consumed = binding_entry == .action;
|
const consumed = binding_entry == .action;
|
||||||
|
Reference in New Issue
Block a user