Skip to content

Instantly share code, notes, and snippets.

@vayn
Created September 4, 2018 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vayn/75a6cb8f01053eaf39a195577d271303 to your computer and use it in GitHub Desktop.
Save vayn/75a6cb8f01053eaf39a195577d271303 to your computer and use it in GitHub Desktop.
Map Left-Control+Open-Bracket to Escape (Karabiner-Elements)
{
"title": "Map Left-Control+Open-Bracket to Escape",
"rules": [
{
"manipulators": [
{
"description": "Bracket Rule [left_control + open_bracket]",
"type": "basic",
"from": {
"key_code": "open_bracket",
"modifiers": {
"mandatory": [
"left_control"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "escape"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment