Skip to content

Instantly share code, notes, and snippets.

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 OrcaXS/d885ce815f95dfc2e61a390b57dfa04d to your computer and use it in GitHub Desktop.
Save OrcaXS/d885ce815f95dfc2e61a390b57dfa04d to your computer and use it in GitHub Desktop.
karabiner-elements-shift-to-caps-lock-under-chinese-scim
{
"description":"Press Shift to toggle CN/EN",
"manipulators":[
{
"conditions":[
{
"input_sources":[
{
"input_source_id":"com.apple.inputmethod.SCIM.ITABC"
}
],
"type":"input_source_if"
}
],
"from":{
"key_code":"left_shift",
"modifiers":{
"optional":[
"any"
]
}
},
"parameters":{
"basic.to_if_alone_timeout_milliseconds":125,
"basic.to_if_held_down_threshold_milliseconds":125
},
"to_if_alone":[
{
"key_code":"caps_lock",
"hold_down_milliseconds":100
}
],
"to_if_held_down":[
{
"key_code":"left_shift"
}
],
"type":"basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment