@
Sylv 谢谢楼主🙏,搞好了
我还有个问题想问下楼主,就是 我想把切换窗口的 command + tab 替换成 option + tab 应该怎么搞,我照着例子胡乱改了下,不好用,楼主知道正确的应该怎么弄吗
{
"description": "Change Alt + tab to Command + tab",
"manipulators": [
{
"from": {
"simultaneous": [
{
"key_code": "left_option"
},
{
"key_code": "tab"
}
],
"modifiers": {
// "mandatory": [
// "command",
// ],
"optional": [
"any"
]
}
},
"to": [
{
// "key_code": "tab",
"simultaneous": [
{
"key_code": "command"
},
{
"key_code": "tab"
}
],
// "modifiers": [
// "command",
// ]
}
],
"type": "basic"
}
]
}