Last active
August 3, 2019 09:31
-
-
Save mikumogit/3daf5da80cb636f5cc8067d68f2f7cf7 to your computer and use it in GitHub Desktop.
日本語配列のHHKB使用時、Shift+_で?を入力するためのKarabiner-Elements用JSONファイル
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Exchange underscore to question for hhkb", | |
"rules": [ | |
{ | |
"description": "Shift+アンダースコアでquestionを入力", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "international1", | |
"modifiers": { | |
"mandatory": [ | |
"shift" | |
], | |
"optional": [ | |
"caps_lock" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "slash", | |
"modifiers": [ | |
"shift" | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment