Created
July 10, 2018 11:15
-
-
Save kkismd/64adbedebe2edd5a81a388a97c71f7c8 to your computer and use it in GitHub Desktop.
Karabiner-ElementsでShift+ゼロをアンダースコアへ変換
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": "Left-Shift + '0' to '_' ", | |
"rules": [ | |
{ | |
"description": "Left-Shift + '0' to '_' ", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "0", | |
"modifiers": { | |
"mandatory": [ | |
"left_shift" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "international1", | |
"modifiers": [ | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment