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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…