-
-
Notifications
You must be signed in to change notification settings - Fork 39.5k
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
[Bug] AUTO_SHIFT_MODIFIERS
occasionally sends single key instead of with-modifier-variant
#19671
Comments
Have you tried setting If you're the tinkering type, you could also experiment with #19449. |
Thanks @lesshonor. It feels like the issue occurs less often now, but it's not fixed. Do you suggest do lower or increase the value of |
The problem is that the keypresses aren't being detected, so a lower That said, increasing If you do try it out, I'm sure the person who opened that pull request would appreciate your feedback. |
Thanks again. Incorporating #19449 did not help. I did some more testing. It all boils down to whether The only two occurences of
so I guess the issue is somewhere there? |
TL;DR you could try adding the below at the bottom of
There is a The reason for it only happening occasionally for you could in part be because the ctrl release would only happen immediately after the key release if you release it before the key - e.g. ctrl down, key down, ctrl up, key up. Though it could just be intermittent anyway. |
Thanks @IsaacElenbaas. I tried to incorporate your suggestion in mplattner@4eec608. Did I do it the way you had in mind? |
I've just updated to the latest version in the master branch (dbd847d), but the problem persists. |
I just looked at that commit from your comment in May again, it should already have those changes. |
Thanks for getting back! Would be great if this can be fixed. Good question - my Not sure if this is related or if it can be fixed together, but another problem that persists for me with Thank you @IsaacElenbaas! |
Describe the Bug
Since I've enabled
AUTO_SHIFT_MODIFIERS
, I have the issue that ~5% of all uses/presses of e.g.CTRL+c
(copy to clipboard) just send ac
instead ofCTRL+c
.I thought it might be that I unintentionally press
CTRL+c
for too long (longer thanAUTO_SHIFT_TIMEOUT
, which is 150ms in my case), and thus it sendsCTRL+SHIFT+c
(as expected, when you press it for too long), but this is not the case: it doesn't sendCTRL+SHIFT+c
, but actually onlyc
.Seems like a bug to me. Here is my keyboard code. Any ideas?
Keyboard Used
sculpter
Link to product page (if applicable)
No response
Operating System
Windows 10
qmk doctor Output
No response
Is AutoHotKey / Karabiner installed
Other keyboard-related software installed
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: