Hey! I'm running into an issue where I'd expect the following to fire when the ? is typed but it doesn't seem to be.
tinykeys(window, {
"?": () => {
alert("The '?' key was pressed")
},
})
I believe it is getting filtered out here: https://github.com/jamiebuilds/tinykeys/blob/main/src/tinykeys.ts#L109