From 9577c8b8b9c2a6612c5349faaa9884d574e7ae29 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 15 Aug 2024 20:06:15 -0700 Subject: [PATCH] core: log when we see a leader --- src/Surface.zig | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Surface.zig b/src/Surface.zig index 2c6a87608..3651ea606 100644 --- a/src/Surface.zig +++ b/src/Surface.zig @@ -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;