KE-complex_modifications
KE-complex_modifications copied to clipboard
Map home/end keys to cmd+left/right
{
"description": "Home/end keys to cmd+left/right",
"manipulators": [
{
"from": {
"key_code": "home",
"modifiers": {
"mandatory": [],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_arrow",
"modifiers": [
"command"
]
}
],
"type": "basic"
},
{
"from": {
"key_code": "end",
"modifiers": {
"mandatory": [],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_arrow",
"modifiers": [
"command"
]
}
],
"type": "basic"
}
]
}
This is useful if you have a Logi Keys keyboard (set to Windows mode) on a Mac. Inspiration from here.