We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f07aec commit 7046c4bCopy full SHA for 7046c4b
1 file changed
packages/opencode/src/util/keybind.ts
@@ -19,7 +19,10 @@ export namespace Keybind {
19
if (info.ctrl) parts.push("ctrl")
20
if (info.option) parts.push("alt")
21
if (info.shift) parts.push("shift")
22
- if (info.name) parts.push(info.name)
+ if (info.name) {
23
+ if (info.name === "delete") parts.push("del")
24
+ else parts.push(info.name)
25
+ }
26
27
let result = parts.join("+")
28
0 commit comments