summaryrefslogtreecommitdiff
path: root/src/Surface.zig
diff options
context:
space:
mode:
authorMitchell Hashimoto <m@mitchellh.com>2025-05-08 21:08:00 -0700
committerMitchell Hashimoto <m@mitchellh.com>2025-05-09 10:01:06 -0700
commitd015efc87d59f873e2ae7a5df8fa432cd5db2bdc (patch)
treef267a05cba24abf2d2d79e0f93bc32b22cac83bc /src/Surface.zig
parent5962696c3b0f42f863b91f6995d2d41e35dcc550 (diff)
clean up bindings so that they match macOS menus
Diffstat (limited to 'src/Surface.zig')
-rw-r--r--src/Surface.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Surface.zig b/src/Surface.zig
index a71c180ff..138cd4839 100644
--- a/src/Surface.zig
+++ b/src/Surface.zig
@@ -1761,6 +1761,8 @@ pub fn keyEventIsBinding(
// sequences) or the root set.
const set = self.keyboard.bindings orelse &self.config.keybind.set;
+ // log.warn("text keyEventIsBinding event={} match={}", .{ event, set.getEvent(event) != null });
+
// If we have a keybinding for this event then we return true.
return set.getEvent(event) != null;
}