{ "title": "Take back Windows-like shortcuts for Japanese while swapping Command and Control", "rules": [ { "description": "Command + T/U/I/P to Control + T/U/I/P and Command + O to Option + a if input source is Japanese", "manipulators": [ { "type": "basic", "from": { "key_code": "t", "modifiers": { "mandatory": [ "command" ] } }, "to": [ { "key_code": "t", "modifiers": [ "control" ] } ], "conditions": [ { "input_sources": [ { "language": "ja" } ], "type": "input_source_if" } ] }, { "type": "basic", "from": { "key_code": "u", "modifiers": { "mandatory": [ "command" ] } }, "to": [ { "key_code": "u", "modifiers": [ "control" ] } ], "conditions": [ { "input_sources": [ { "language": "ja" } ], "type": "input_source_if" } ] }, { "type": "basic", "from": { "key_code": "i", "modifiers": { "mandatory": [ "command" ] } }, "to": [ { "key_code": "i", "modifiers": [ "control" ] } ], "conditions": [ { "input_sources": [ { "language": "ja" } ], "type": "input_source_if" } ] }, { "type": "basic", "from": { "key_code": "o", "modifiers": { "mandatory": [ "command" ] } }, "to": [ { "key_code": "a", "modifiers": [ "option" ] } ], "conditions": [ { "input_sources": [ { "language": "ja" } ], "type": "input_source_if" } ] }, { "type": "basic", "from": { "key_code": "p", "modifiers": { "mandatory": [ "command" ] } }, "to": [ { "key_code": "p", "modifiers": [ "control" ] } ], "conditions": [ { "input_sources": [ { "language": "ja" } ], "type": "input_source_if" } ] } ] } ] }