我正在尝试绑定command-e
到End
. Powerpoint app
默认情况下,当我按下 时commend-e
,powerpoint 会在其中创建一个项目和选项卡。我尝试过使用此答案的以下方法,但它不起作用。它可能有什么问题,我该如何解决?
{
"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"
}
]
}