Created
December 29, 2021 05:23
-
-
Save ryonakae/377a056012e299d7e72aa6be695b43bb to your computer and use it in GitHub Desktop.
Karabiner-Elementsで左Ctrl + SpaceをEnterにする
This file contains hidden or 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 Control + Spacebar to Enter", | |
"rules": [ | |
{ | |
"description": "Left Control + Spacebar to Enter", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "spacebar", | |
"modifiers": { | |
"mandatory": ["left_control"], | |
"optional": ["any"] | |
} | |
}, | |
"to": [ | |
{ | |
"repeat": true, | |
"key_code": "return_or_enter" | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment