claude-code-marketplace 0.5.3 → 0.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/app.js +4 -0
package/package.json
CHANGED
package/public/app.js
CHANGED
|
@@ -1369,6 +1369,10 @@ if ('serviceWorker' in navigator) {
|
|
|
1369
1369
|
e.preventDefault();
|
|
1370
1370
|
window.parent?.postMessage({ type: 'hub:keydown', key: e.key }, '*');
|
|
1371
1371
|
}
|
|
1372
|
+
if (e.altKey && !e.ctrlKey && !e.shiftKey && !e.metaKey && /^[1-9]$/.test(e.key)) {
|
|
1373
|
+
e.preventDefault();
|
|
1374
|
+
window.parent?.postMessage({ type: 'hub:keydown', key: e.key }, '*');
|
|
1375
|
+
}
|
|
1372
1376
|
});
|
|
1373
1377
|
})();
|
|
1374
1378
|
|