From 6589a4735290ed371dc6309953cb776ae7971e01 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 10 May 2022 14:13:59 -0700 Subject: [PATCH] send esc --- src/Window.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Window.zig b/src/Window.zig index 37e793834..001d94c8a 100644 --- a/src/Window.zig +++ b/src/Window.zig @@ -342,6 +342,7 @@ fn keyCallback( .backspace => 0x08, .enter => '\r', .tab => '\t', + .escape => 0x1B, else => return, };