Skip to content

Instantly share code, notes, and snippets.

@Gyubin
Last active February 5, 2026 15:53
Show Gist options
  • Select an option

  • Save Gyubin/c5c616562d3f4a22be96a14b941e6931 to your computer and use it in GitHub Desktop.

Select an option

Save Gyubin/c5c616562d3f4a22be96a14b941e6931 to your computer and use it in GitHub Desktop.
{
"description": "한글 모드에서만 Ctrl+b 입력시 영문으로 전환 후 명령어 전달",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "b",
"modifiers": { "mandatory": ["left_control"] }
},
"to": [
{ "key_code": "f19" },
{
"key_code": "b",
"modifiers": ["left_control"]
}
],
"conditions": [
{
"type": "input_source_if",
"input_sources": [
{ "language": "ko" }
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment