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
The current RegExp for matching keys only matches the prefix of an original key (cccccc). If you set a custom key that prefix changes to vvcccc (and kkjjjj for Dvorak) and is not recognized.
I think it should be as simple as adjusting the prefix part of the respective RegExp to (cc|vv)cccc and (jj|kk)jjjj but I am not much of a JavaScript/CoffeeScript guy.
The text was updated successfully, but these errors were encountered:
The current RegExp for matching keys only matches the prefix of an original key (
cccccc
). If you set a custom key that prefix changes tovvcccc
(andkkjjjj
for Dvorak) and is not recognized.I think it should be as simple as adjusting the prefix part of the respective
RegExp
to(cc|vv)cccc
and(jj|kk)jjjj
but I am not much of a JavaScript/CoffeeScript guy.The text was updated successfully, but these errors were encountered: