我正在尝试为我的 HHKB 键盘绑定shift + delete
到|
karabiner。
我确实可以将上面的序列映射到backslash
,这可能是小写的|
,但我还没有找到任何方法将它直接映射到|
char 。
这是我尝试过的:
{
"description": "shift + delete to pipe",
"manipulators": [
{
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"shift"
]
}
},
"to": [
{
"key_code": "backslash"
}
],
"type": "basic"
}
]
},