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
{ | |
"title": "auto switch back to english for g6 ime (a-z exclude uiopjkl)", | |
"rules": [ | |
{ | |
"description": "remap esc to space for close suggestion panel", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": {"key_code": "escape"}, | |
"to": [{"key_code": "spacebar"}, {"set_variable": {"name": "ime_running", "value": false}}, {"set_variable": {"name": "ime_selected", "value": false}}], |
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
{ | |
"title": "remap windows shortcut to mac", | |
"rules": [ | |
{ | |
"description": "remap ctrl alt cmd (exclude moonlight/vscode)", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": {"key_code": "left_control", "modifiers": {"optional": ["any"]}}, | |
"to": [{"key_code": "left_command"}], |