Using sticky modifier keys without a delay? #4015
Unanswered
Oneechan69
asked this question in
Q&A
Replies: 1 comment
-
Oh, it's an issue of prepared Simple Modifications > Sticky modifier keys definitions. {
"description": "Ctrl + h j k l to Arrow Keys",
"manipulators": [
{
"from": {
"key_code": "h",
"modifiers": { "mandatory": ["right_control"] }
},
"to": [
{ "sticky_modifier": { "right_control": "off" } },
{ "key_code": "left_arrow" }
],
"type": "basic"
},
{
"from": {
"key_code": "j",
"modifiers": {
"mandatory": ["right_control"],
"optional": ["any"]
}
},
"to": [
{ "sticky_modifier": { "right_control": "off" } },
{ "key_code": "down_arrow" }
],
"type": "basic"
}
]
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I map a modifier to
sticky_right_control
, my complex modification below doesn't work without pressing the non-modifier key at least twice or waiting (h or j in this case). How can the delay be removed, and have it work either when I press it once or while holding it down?Beta Was this translation helpful? Give feedback.
All reactions