Last active
September 2, 2025 16:59
-
-
Save wjkoh/f4cbce844483542b94772f867f8ff45c to your computer and use it in GitHub Desktop.
MacOS: Press Escape to switch to English (sends Escape multiple times)
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": "Press Escape to switch to English (sends Escape multiple times)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "input_sources": [{ "language": "^en$" }], | |
| "type": "input_source_unless" | |
| } | |
| ], | |
| "from": { "key_code": "escape" }, | |
| "to": [ | |
| { "select_input_source": { "language": "^en$" } }, | |
| { "key_code": "escape" }, | |
| { "key_code": "escape" } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment