hotkeys-js icon indicating copy to clipboard operation
hotkeys-js copied to clipboard

Unable to capture "command or meta"

Open Laev opened this issue 7 months ago • 2 comments

hotkeys("ctrl, command", (event) => { console.log("event"); }); or hotkeys("ctrl, meta", (event) => { console.log("event"); }); can not print event

but hotkeys("*", (event) => { console.log("event"); }); successful printing `metakey 'is triggered

Laev avatar Jul 12 '24 02:07 Laev