From 2336e1266ef613dc57de5e443d16f0ff1c783381 Mon Sep 17 00:00:00 2001 From: adi-IL Date: Mon, 31 Aug 2026 02:06:32 +0530 Subject: [PATCH] Allow closing compact command menus with Esc --- src/core/app/app_input_runtime.zig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/app/app_input_runtime.zig b/src/core/app/app_input_runtime.zig index 21efa7e0b..e006353a6 100644 --- a/src/core/app/app_input_runtime.zig +++ b/src/core/app/app_input_runtime.zig @@ -1381,6 +1381,10 @@ pub fn Runtime(comptime App: type) type { _ = moveCompactCommandMenu(app, menu, -1); app.shell.render_requests.request(.footer); }, + 27 => { + _ = cancelCompactCommandMenu(app); + app.shell.render_requests.request(.footer); + }, else => {}, } return true;