@
yetone 我用了你的配置,感觉有时候切换会出问题。
我给改成了用自己的键位进行设置,首先要在设置里面更改切换输入法的快捷键,我改成了⌥<space>,然后就是在 `~/.config/karabiner/karabiner.json` 里面进行配置
```
{
"description": "Switch between zh-Hans <-> en (left_shift)",
"manipulators": [
{
"from": {
"key_code": "left_shift",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_shift"
}
],
"to_if_alone": [
{
"key_code": "spacebar",
"modifiers": [
"left_alt"
]
}
],
"type": "basic"
},
{
"from": {
"key_code": "left_shift",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_shift"
}
],
"to_if_alone": [
{
"key_code": "spacebar",
"modifiers": [
"left_alt"
]
}
],
"type": "basic"
}
]
}
```