Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
173 views
in Technique[技术] by (71.8m points)

karabiner - macOS: How to map `command-e` to `End` key in Powerpoint

I am trying to bind command-e to End key in the Powerpoint app. By default when I press commend-e, powerpoint creates an item and tabs in. I have tried following approach using this answer, which does not work. What may be the problem for it and how can I fix it?

{
    "description": "Microsoft Unmap command-E",
    "manipulators": [
        {
            "conditions": [
                {
                    "bundle_identifiers": [
                        "^com\.microsoft\.Powerpoint$"
                    ],
                    "type": "frontmost_application_if"
                }
            ],
            "from": {
                "key_code": "e",
                "modifiers": {
                    "mandatory": [
                        "command"
                    ],
                    "optional": [
                        "caps_lock",
                        "option"
                    ]
                }
            },
            "to": [
                {
                    "key_code": "home"
                }
            ],
            "type": "basic"
        }
    ]
}
question from:https://stackoverflow.com/questions/66045284/macos-how-to-map-command-e-to-end-key-in-powerpoint

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...