Skip to content

Instantly share code, notes, and snippets.

@mikumogit
Created January 12, 2021 04:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikumogit/4a47ccf37b5ffcca3472eec8af142dc9 to your computer and use it in GitHub Desktop.
Save mikumogit/4a47ccf37b5ffcca3472eec8af142dc9 to your computer and use it in GitHub Desktop.
ControlとTABでCapsLockを代替するためのKarabiner-Elements用JSONファイル
{
"title": "Ctrl+TAB to CapsLock for hhkb",
"rules": [
{
"description": "Ctrl+TABでCapsLockを入力",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "tab",
"modifiers": {
"mandatory": [
"control"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "caps_lock"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment