mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-18 05:20:29 +00: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;
|
||||
};
|
||||
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,
|
||||
};
|
||||
const consumed = binding_entry == .action;
|
||||
|
||||
Reference in New Issue
Block a user