-
Notifications
You must be signed in to change notification settings - Fork 66
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
rolls for the same shifted and unshifted symbol do not work #808
Comments
Well, indeed. However it is expected and by specification quite correct, so I am not sure if we should be introducing an artificial release of the scancode. (UHK sends scancodes, not characters) On your side you can fix it by creating a macro - that would just tap the key and release immediately. |
Although, given the already existing logic for extra modifier reports (for a shift+a, we send first a Although I don't know how to implement this globally (so that it works for macros too) without it costing some 150 extra bytes of memory. @mondalaci opinion? |
This is such a niche use case that I wouldn't increase complexity and resource consumption; rather, I would suggest using macros. |
Thanks for clarifying, I can use macro for this. |
I believe that most users don't split characters available by one key to multiple keys, although it definitely is a valid usecase. As for this to be a rare issue/usecase, I believe that you are the first one to raise this in the last 8 years, so yes, it is a rare occurrence (independently of whether the usecase is valid and independently of whether and how it should be supported). |
Hopefully that's not because I am the only one, but because UHK is gaining popularity and user base is growing so the firmware have bigger exposure. Anyway, I just wanted you to be aware of the issue as combinations can be multiplied like some shortcuts involving the same key launched in quick roll involving a |
We appreciate your report! Do you need help with macros to implement the desired behavior? |
I should be fine. I just need to identify all possible combinations that can be affected like sequences from a symbol and numbers layer
|
Nothing suitable at the moment I am afraid, but we have improving "generic macro" support on our todolist. Unfortunately, we have other priorities at the moment though. You can check https://forum.ultimatehackingkeyboard.com/t/parametrizable-smart-macros-brainstorm-for-future-specification/1338/4 and maybe share some ideas on how to do that exactly.
Well, this is a blocker indeed. I think we should support some way to make this usecase easier to handle. It is a reasonable usecase after all. (Although the note about priorities unfortunately still holds.) |
There is the However, it is a hacky solution that I am not at all happy about. |
Understood, thanks. |
@mondalaci let's leave this open please |
Firmware 11.1.1 | Agent 4.2.0
Given that shifted and unshited characters typically belonging to the same physical key are defined on the mod layer
then a roll of those keys to produce
+=
sequence does not work and produces only the first character+
.This is also true in opposite direction where
=+
would be expected but only=
is produced.There has to be a release of the first key before the second key press for that to work.
Rolls of characters not belonging to the same key on typical layout like
-=
or*=
etc are working fine when defined and executed in similar way.The text was updated successfully, but these errors were encountered: