Skip to content

Instantly share code, notes, and snippets.

@maxkorp
Created March 18, 2019 22:46
Show Gist options
  • Save maxkorp/01d652071ff0efc54b1c71a4d212c5c1 to your computer and use it in GitHub Desktop.
Save maxkorp/01d652071ff0efc54b1c71a4d212c5c1 to your computer and use it in GitHub Desktop.
karabiner caps to escape (caps if held)
{
"description": "Change caps_lock to escape. (Post caps_lock if held_down)",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "escape"
}
],
"to_if_held_down": [
{
"key_code": "caps_lock"
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment