Skip to content

Instantly share code, notes, and snippets.

@qgp9
Created March 30, 2019 10:38
Show Gist options
  • Save qgp9/911b9358e4256f1b09a6cc8a412a2bb7 to your computer and use it in GitHub Desktop.
Save qgp9/911b9358e4256f1b09a6cc8a412a2bb7 to your computer and use it in GitHub Desktop.
Chang fn/cmd+esc to grave_accent_and_tilde
{
"title": "Change fn + esc to grave_accent_and_tilde",
"rules": [
{
"description": "Change fn + esc grave_accent_and_tilde",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "escape",
"modifiers": {
"mandatory": [
"fn"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "grave_accent_and_tilde"
}
]
},
{
"type": "basic",
"from": {
"key_code": "escape",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "grave_accent_and_tilde"
}
]
},
{
"type": "basic",
"from": {
"key_code": "escape",
"modifiers": {
"mandatory": [
"shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "grave_accent_and_tilde",
"modifiers": "shift"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment