set default tab to help. add beep keys.

This commit is contained in:
legop3
2025-12-08 13:57:27 -05:00
parent 161929e280
commit 6580de08d4
20 changed files with 254 additions and 21 deletions
+4
View File
@@ -92,5 +92,9 @@ export function formatKeyLabel(value) {
if (canonical === '/') return '/ or ?';
if (canonical === '-') return '- or _';
if (canonical === '=') return '= or +';
if (canonical === 'arrowup') return 'Arrow Up';
if (canonical === 'arrowdown') return 'Arrow Down';
if (canonical === 'arrowleft') return 'Arrow Left';
if (canonical === 'arrowright') return 'Arrow Right';
return canonical.length === 1 ? canonical.toUpperCase() : canonical;
}