如何在 Karabiner-Elements 中创建重映射插入键到 command+option+I

How to create remap insert key to command+option+I in Karabiner-Elements

Karabiner-Elements 很棒。 但是不懂修改规则

我想在我的 iMac 中插入密钥以打开开发者工具。 我可以举一些例子吗?

我不太明白你的贴子,尤其是你的最后一句话……

但是,要回答您的 "posting headline",您可能例如导入这个复杂的 mod。 (另存为 "Insert_to_DevTools.json" 到您的 ~/.config/karabiner/assets/complex_modifications 文件夹中):

{"title": "Insert key to open Developer Tools.",
 "rules":[
         { "description": "Remaps ''Insert'' key to ''Cmd-Opt-I''",
           "manipulators":[
                          { "from": { "key_code": "insert" },
                              "to":[{ "key_code": "i",
                                     "modifiers": ["command", "option"] }
                                    ],
                            "type": "basic"
}        ]}               ]}

(此代码假定您有一个不同的 "insert key"。如果仅通过按 "shift" 调用 "insert",您必须添加 ,"modifiers":{ "mandatory": ["shift"] } after "insert".)

保存此 json 文件后,通过 K-E 的选项卡导入它 "Complex Modifications" 并选中 [X 启用] 以激活它。