请告诉我。
我用的是mac的魔法键盘。此键盘在同一个输入键上是+和=
因此,=是默认输入键=
+是默认输入键=+ shift键
我想反转,但是,进展不太顺利
请告诉我。
Under,理想设置
之前:
=是默认设置=
+是默认设置=+ shift键↓
之后:
=→+
shift +=→=
{
"type": "basic",
"from": {
"simultaneous": [
{
"key_code": "equal_sign"
},
{
"key_code": "left_shift"
}
],
"modifiers": {
"optional": ["any"]
}
},
"to": [
{
"key_code": "equal_sign"
}
]
},
{
"type": "basic",
"from": {
"simultaneous": [
{
"key_code": "equal_sign"
}
],
"modifiers": {
"optional": ["any"]
}
},
"to": [
{
"key_code": "equal_sign"
},
{
"key_code": "left_shift"
}
]
}发布于 2021-10-18 18:09:38
这是一个可行的解决方案;因为我使用的是欧洲键盘,所以我在测试时使用了字母"o“--您必须用"equal_sign”替换您的键盘!
{ "description": "Will exchange principal with secondary key 'expression' …",
"manipulators":
[ {
"type": "basic",
"from": { "key_code": "o",
"modifiers": {
"mandatory": ["left_shift"],
"optional": ["any"] }
},
"to": [ { "key_code": "o" } ]
},
{
"type": "basic",
"from": { "key_code": "o",
"modifiers": { "optional": ["any"] }
},
"to": [ { "key_code": "o",
"modifiers": "left_shift" } ]
}
]
}https://stackoverflow.com/questions/66237366
复制相似问题