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
Set Windows keyboard layout to US/Dvorak for example
Ctrl-S and Ctrl-B do not work as expected in Script Editor. Instead they are Ctrl-O and Ctrl-X respectively, ie, they are mapped to key positions rather than letters
is using KeyboardEvent.code=='KeyB' which returns the key position rather than value. KeyboardEvent.key=='b' should behave as expected. You can see the same effect reproduced at https://javascript.info/keyboard-events
The text was updated successfully, but these errors were encountered: