feat: Implement keyboard shortcuts system with UI management, add txt-to-pdf tests, and introduce a generic warning modal.

This commit is contained in:
abdullahalam123
2025-11-21 17:10:56 +05:30
parent 77ee986e2c
commit 5fecc701c6
15 changed files with 947 additions and 23 deletions

View File

@@ -0,0 +1,7 @@
import { ShortcutsManager } from '../logic/shortcuts.js';
export function initializeGlobalShortcuts() {
ShortcutsManager.init();
console.log('Global shortcuts initialized');
}