Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save layerok/0b7507f7795dba4fbc4e115bc15b97b1 to your computer and use it in GitHub Desktop.
Save layerok/0b7507f7795dba4fbc4e115bc15b97b1 to your computer and use it in GitHub Desktop.
{
"description": "Change Command + h/j/k/l to Arrows",
"manipulators": [
{
"from": {
"key_code": "j",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_arrow"
}
],
"type": "basic"
},
{
"from": {
"key_code": "k",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "down_arrow"
}
],
"type": "basic"
},
{
"from": {
"key_code": "i",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "up_arrow"
}
],
"type": "basic"
},
{
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_arrow"
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment