⌨️
Karabiner-Elements の設定でJISキーボードでSingle Quoteを使いやすいところに置く
JISキーボードで育ったのでJISキーボードじゃないと配列がわからないんだけど、
USキーボードの '
が打ちやすいのはうらやましい。
そうだKarabiner Elementsでなんとかしよう。
'
にする方法
left opt + 2 -> {
"description": "single quote(JIS)",
"manipulators": [
{
"from": {
"key_code": "2",
"modifiers": {
"mandatory": [
"left_opt"
],
"optional": [
"caps_lock",
"option"
]
}
},
"to": [
{
"key_code": "7",
"modifiers": ["shift"]
}
],
"type": "basic"
}
]
},
'
left opt + 2 -> "
left shift+2 -> {
"description": "double quote(JIS)",
"manipulators": [
{
"from": {
"key_code": "2",
"modifiers": {
"mandatory": [
"left_shift"
],
"optional": [
"caps_lock",
"option"
]
}
},
"to": [
{
"key_code": "7",
"modifiers": ["shift"]
}
],
"type": "basic"
}
]
},
{
"description": "single quote(JIS)",
"manipulators": [
{
"from": {
"key_code": "2",
"modifiers": {
"mandatory": [
"left_option"
],
"optional": [
"caps_lock",
"option"
]
}
},
"to": [
{
"key_code": "2",
"modifiers": ["shift"]
}
],
"type": "basic"
}
]
},
```
Mistel MD770JP はいいぞ
Discussion