Skip to content
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

Defining triggers with keys that are *not* pressed #11

Open
mcmillion opened this issue Oct 3, 2016 · 3 comments
Open

Defining triggers with keys that are *not* pressed #11

mcmillion opened this issue Oct 3, 2016 · 3 comments
Assignees
Labels
state scheduling State Scheduling Related
Milestone

Comments

@mcmillion
Copy link

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.

@haata
Copy link
Member

haata commented Oct 3, 2016

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
.

@mcmillion
Copy link
Author

Fantastic! I'll keep an eye out.

@ckaros
Copy link

ckaros commented Oct 5, 2016

try setting this as a sequence trigger like this.

U"FUNCTION7" : ')';
U"RShift" , U"FUNCTION7" : '>';

@haata haata self-assigned this Feb 20, 2019
@haata haata added the state scheduling State Scheduling Related label Feb 20, 2019
@haata haata added this to the v0.5.x milestone Feb 20, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
state scheduling State Scheduling Related
Projects
None yet
Development

No branches or pull requests

3 participants