From cca082aedf027fbc2d8c46002ec0de84af5ad6e9 Mon Sep 17 00:00:00 2001 From: Can Date: Wed, 7 Jan 2026 13:45:25 +0300 Subject: [PATCH] fix(keycodes): correct MetaRight and ContextMenu descriptions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add "Right ⌘" to MetaRight to match MetaLeft consistency. - Remove "Right ⌘" from ContextMenu as it is incorrect for Mac layouts. --- lib/keycodes/with-events.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/keycodes/with-events.ts b/lib/keycodes/with-events.ts index fd1dfaa..b5d67f8 100644 --- a/lib/keycodes/with-events.ts +++ b/lib/keycodes/with-events.ts @@ -780,7 +780,7 @@ export const keyCodesWithEvents: Record = { ctrlKey: false, metaKey: true, shiftKey: true, - description: 'Right Windows', + description: 'Right Windows / Right ⌘', unicode: '⌘ ⊞', path: '/meta-right' }, @@ -794,7 +794,7 @@ export const keyCodesWithEvents: Record = { ctrlKey: false, metaKey: false, shiftKey: false, - description: 'Windows Menu / Right ⌘', + description: 'Windows Menu', unicode: '▤', path: '/context-menu' },