Created
May 31, 2019 18:21
-
-
Save bkudria/e5de9b27188f0bdbe0449152e2b5ad57 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Change caps_lock key (rev 4)", | |
"rules": [{ | |
"description": "Change caps_lock to control if pressed with other keys, to tab if pressed alone.", | |
"manipulators": [{ | |
"type": "basic", | |
"from": { | |
"key_code": "caps_lock", | |
"modifiers": { | |
"optional": ["any"] | |
} | |
}, | |
"to": [{ | |
"key_code": "left_control" | |
}], | |
"to_if_alone": [{ | |
"key_code": "escape" | |
}] | |
}] | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment