KE-complex_modifications icon indicating copy to clipboard operation
KE-complex_modifications copied to clipboard

Map home/end keys to cmd+left/right

Open stevage opened this issue 2 years ago • 0 comments

{
    "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.

stevage avatar Jan 23 '24 05:01 stevage