You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today's NYT puzzle (Sunday July 17th) has numerical rebus inputs (e.g. in this case the number '10'). In order to type those, you need to hold down Shift, which changes the keys being entered.
You could probably fix this by using 'keyCode' instead of 'key' (which will return the non-shift'd variant), but then you'd have to map keys to number codes :/
The text was updated successfully, but these errors were encountered:
Ah yeah, this is a pretty rare case. It might make sense to add a rebus entry mode (which always rebuses regardless of Shift being held down) that users can toggle by clicking a button labeled "Rebus" in the toolbar. PR's for this welcome!
Incidentally, I use https://www.kaufmann.no/roland/dvorak/ which doesn't actually have this problem, since all the numbers are in the shift position :)
Today's NYT puzzle (Sunday July 17th) has numerical rebus inputs (e.g. in this case the number '10'). In order to type those, you need to hold down
Shift
, which changes the keys being entered.You could probably fix this by using 'keyCode' instead of 'key' (which will return the non-shift'd variant), but then you'd have to map keys to number codes :/
The text was updated successfully, but these errors were encountered: