-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove linux altGr detection, replace windows altGr with Control + Alt #1548
Conversation
|
||
expect(shortcuts).toStrictEqual({ | ||
summon: { | ||
modifierKeys: ['Alt', 'Control'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there a case on either platform where either of these modifiers could have already been in the list and we're left with a list like ['Alt', 'Control', 'Control']
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmmm possibly, I'll address this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok it's not possible on Windows at least to get AltGr
and either of the replacement modifiers in combination. Going to check linux
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I verified this on Linux, I couldn't get AltGr
+ Alt
+ ... to register - as soon as you press the left Alt key it overrides the AltGr
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, let's just make sure to test as many different migration scenarios as we can: coming from both 0.6.3 and 0.6.5. let's just be extra sure there are no issues w this one
No description provided.