如何重新映射 Karabiner Elements 中的组合键?
How to remap key combinations in Karabiner Elements?
我目前已切换到 mac。但是我习惯了 Windows 中的键绑定。
我想以不同方式映射键绑定,以便它们类似于 windows 键。
特别是我想更改以下键:
Option + 5 = [ (in mac) to: control + command + 7 = [ (like in 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 }
]
} ]
}
此 rule/re-map 将在任何书写应用程序中生成“[”括号。
您可以手动将其插入 Karabiner.json 文件或将其作为复杂修改导入。
我目前已切换到 mac。但是我习惯了 Windows 中的键绑定。 我想以不同方式映射键绑定,以便它们类似于 windows 键。
特别是我想更改以下键:
Option + 5 = [ (in mac) to: control + command + 7 = [ (like in 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 }
]
} ]
}
此 rule/re-map 将在任何书写应用程序中生成“[”括号。
您可以手动将其插入 Karabiner.json 文件或将其作为复杂修改导入。