From 77c65b18b521aad07aa306952b9e0a4172bf2765 Mon Sep 17 00:00:00 2001 From: Aiden Cline Date: Wed, 5 Nov 2025 10:13:04 -0600 Subject: [PATCH] tweak: normalize escape keybind --- packages/opencode/src/util/keybind.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/opencode/src/util/keybind.ts b/packages/opencode/src/util/keybind.ts index 96619416..5beaf9aa 100644 --- a/packages/opencode/src/util/keybind.ts +++ b/packages/opencode/src/util/keybind.ts @@ -64,6 +64,9 @@ export namespace Keybind { case "leader": info.leader = true break + case "esc": + info.name = "escape" + break default: info.name = part break