We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is this possible? There doesn't seem to be anything in the documentation indicating that it is.
I'm trying to implement a key that is ), but > when shift is held (similar to how ] and } behave. I tried something like:
)
>
]
}
U"FUNCTION7" : ')'; U"RShift" + U"FUNCTION7" : '>';
That almost works. The problem is that the shifted form matches both, so it outputs )> rather than just >.
)>
Is there any way to accomplish this currently? I've got this working via ControllerMate, but I'd love to make it native to my board.
The text was updated successfully, but these errors were encountered:
Not right now, but I am working on it for the KLL 0.5 upgrade that will be shipping with the K-Type.
This is where it'll show up first -> https://github.com/kiibohd/controller/tree/ktype
On Mon, Oct 3, 2016 at 2:31 PM Matt McMillion [email protected] wrote:
Is this possible? There doesn't seem to be anything in the documentation indicating that it is. I'm trying to implement a key that is ), but > when shift is held (similar to how ] and } behave. I tried something like: U"FUNCTION7" : ')'; U"RShift" + U"FUNCTION7" : '>'; That almost works. The problem is that the shifted form matches both, so it outputs )> rather than just >. Is there any way to accomplish this currently? I've got this working via ControllerMate, but I'd love to make it native to my board. — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub #11, or mute the thread https://github.com/notifications/unsubscribe-auth/AABbqfB3wO4somjSwgPRVnmtj_Kmi9OOks5qwXQVgaJpZM4KNEMo .
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub #11, or mute the thread https://github.com/notifications/unsubscribe-auth/AABbqfB3wO4somjSwgPRVnmtj_Kmi9OOks5qwXQVgaJpZM4KNEMo .
Sorry, something went wrong.
Fantastic! I'll keep an eye out.
try setting this as a sequence trigger like this.
U"FUNCTION7" : ')'; U"RShift" , U"FUNCTION7" : '>';
haata
No branches or pull requests
Is this possible? There doesn't seem to be anything in the documentation indicating that it is.
I'm trying to implement a key that is
)
, but>
when shift is held (similar to how]
and}
behave. I tried something like:That almost works. The problem is that the shifted form matches both, so it outputs
)>
rather than just>
.Is there any way to accomplish this currently? I've got this working via ControllerMate, but I'd love to make it native to my board.
The text was updated successfully, but these errors were encountered: