Last active
February 5, 2026 15:53
-
-
Save Gyubin/c5c616562d3f4a22be96a14b941e6931 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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