summaryrefslogtreecommitdiffhomepage
path: root/packages
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2025-11-05 10:13:04 -0600
committerAiden Cline <[email protected]>2025-11-05 10:13:04 -0600
commit77c65b18b521aad07aa306952b9e0a4172bf2765 (patch)
treeaa693bfd0176382b4175e36af40d7dc21c8d02e8 /packages
parentc9dfe6d9649c637729d8d4d1cdb0791105c7c98b (diff)
downloadopencode-77c65b18b521aad07aa306952b9e0a4172bf2765.tar.gz
opencode-77c65b18b521aad07aa306952b9e0a4172bf2765.zip
tweak: normalize escape keybind
Diffstat (limited to 'packages')
-rw-r--r--packages/opencode/src/util/keybind.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/opencode/src/util/keybind.ts b/packages/opencode/src/util/keybind.ts
index 96619416f..5beaf9aab 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