我目前已经切换到mac。但是我习惯了 Windows 中的键绑定。我想以不同的方式映射键绑定,使它们类似于 Windows 键。
特别是我想更改以下键:
Option + 5 = [(在mac中)到:control + command + 7 = [(如在Windows中)
等等
我如何在 Karabiner Elements 中做到这一点?
非常感谢!
如果我理解正确(= 你想在 Mac 键盘上按 Ctrl-Cmd-7),这将是:
{ "description": "Option-5 to Option-Cmd-7",
"manipulators": [ {
"type": "basic",
"from": { "key_code": "7",
"modifiers": {
"mandatory": [ "left_control", "left_command" ]
} },
"to": [
{ "key_code": "5",
"modifiers": "left_option",
"repeat": false }
]
} ]
}
此规则/重新映射将在任何写作应用程序中产生一个“[”括号。
您可以手动将其插入到您的 Karabiner.json 文件中,或将其作为复杂修改导入。