0

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"
        }
    ]
}
alper
  • 2,919
  • 9
  • 53
  • 102
  • Are you sure about the wording for your Powerpoint.app? … … … My apps are listed in Karabiner's EventViewer as (e.g.): /Applications/Safari.app/Contents/MacOS/Safari. … … … No backslashing and no final "$" with mine !?! – clemsam lang Oct 18 '21 at 19:13
  • I think I got that pattern (`"^com\\.microsoft\\.Powerpoint$"`) from other Karabiner's examples, like the one I linked in my question. – alper Oct 18 '21 at 21:29
  • Seems.allright. Hmm. If you are still interested in the problem you just might try my "convention": "^com/microsoft/Powerpoint" or better open EventViewer while Powerpoint is frontmost and look at AV's "File Path". Good night. – clemsam lang Oct 18 '21 at 22:11

0 Answers0