Skip to content

Instantly share code, notes, and snippets.

@adeonhy
Last active May 14, 2018 01:53
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 adeonhy/6dbcd97d15467572ad2244e3b8d5e81e to your computer and use it in GitHub Desktop.
Save adeonhy/6dbcd97d15467572ad2244e3b8d5e81e to your computer and use it in GitHub Desktop.
{
"description": "Shiftを単体で押したときに、(/)キーを送信する。(左Shiftは(、右Shiftは) )",
"manipulators": [
{
"from": {
"key_code": "left_shift",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_shift",
"lazy": true
}
],
"to_if_alone": [
{
"key_code": "9",
"modifiers": ["left_shift"]
}
],
"type": "basic"
},
{
"from": {
"key_code": "right_shift",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_shift",
"lazy": true
}
],
"to_if_alone": [
{
"key_code": "0",
"modifiers": ["left_shift"]
}
],
"type": "basic"
}
]
},
@adeonhy
Copy link
Author

adeonhy commented May 14, 2018

QMKのKC_LSPO/KC_RSPC(左右Shift単押しでカッコ入力するやつ)をKarabiner-Elementsで実現するやつ

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment