Replies: 1 comment
-
If you don't want to change option+command+HJKL, remove {
"description": "example",
"manipulators": [
{
"from": {
"key_code": "h",
"modifiers": {
"mandatory": ["left_option"],
"optional": ["caps_lock", "control", "fn", "option", "shift"]
}
},
"to": [{ "key_code": "left_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
-
Hello, I have set option+HJKL to be arrow keys. But now other shortcuts like option+cmd+L (to go to the downloads folder) do not work. I guess it is because the option key is in both? Is there as way to make it work? Sorry if this is a basic question, but I am a new user of KE. If this could be made to work, that would be really great. Thank you. (I would like to use the same physical key on the keyboard so specifying left vs right option won't work, I guess.) This is in the rule I'm using:
{
"from": {
"key_code": "h",
"modifiers": {
"mandatory": ["left_option"],
"optional": ["any"]
}
},
"to": [{ "key_code": "left_arrow" }],
"type": "basic"
},
Beta Was this translation helpful? Give feedback.
All reactions