Skip to content

Instantly share code, notes, and snippets.

@ryonakae
Created December 29, 2021 05:23
Show Gist options
  • Save ryonakae/377a056012e299d7e72aa6be695b43bb to your computer and use it in GitHub Desktop.
Save ryonakae/377a056012e299d7e72aa6be695b43bb to your computer and use it in GitHub Desktop.
Karabiner-Elementsで左Ctrl + SpaceをEnterにする
{
"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