Created
April 30, 2019 12:19
-
-
Save jammi/6566eafb6eedd8df36d3c555e2744850 to your computer and use it in GitHub Desktop.
Karabiner-elements complex mapping for META key mapping in terminal and §-key to ESC mapping.
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": "Terminal Meta Key", | |
| "rules": [ | |
| { | |
| "description": "Terminal Meta [§ key as trigger key, ESC if alone, fn-§ for §]", | |
| "manipulators": [ | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "non_us_backslash", | |
| "modifiers": { | |
| "mandatory": [ | |
| "fn" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "non_us_backslash" | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "non_us_backslash", | |
| "modifiers": { | |
| "optional": [ | |
| "command", "option", "shift", "control" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "non_us_backslash", | |
| "modifiers": { | |
| "optional": [ "control", "shift", "option" ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "set_variable": { | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| } | |
| ], | |
| "to_if_alone": [ | |
| { | |
| "key_code": "escape" | |
| } | |
| ], | |
| "to_after_key_up": [ | |
| { | |
| "set_variable": { | |
| "name": "terminal_meta_mode", | |
| "value": 0 | |
| } | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "frontmost_application_if", | |
| "bundle_identifiers": [ | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^net.kovidgoyal.kitty$", | |
| "^co\\.zeit\\.hyperterm$", | |
| "^co\\.zeit\\.hyper$", | |
| "^lo\\.alarcitty$", | |
| "^net\\.kovidgoyal\\.kitty$" | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Terminal Meta [Right Control key as trigger key, Right Control if alone]", | |
| "manipulators": [ | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "right_control", | |
| "modifiers": { | |
| "optional": [ "any" ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "set_variable": { | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| } | |
| ], | |
| "to_if_alone": [ | |
| { | |
| "key_code": "right_control" | |
| } | |
| ], | |
| "to_after_key_up": [ | |
| { | |
| "set_variable": { | |
| "name": "terminal_meta_mode", | |
| "value": 0 | |
| } | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "frontmost_application_if", | |
| "bundle_identifiers": [ | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^net.kovidgoyal.kitty$", | |
| "^co\\.zeit\\.hyperterm$", | |
| "^co\\.zeit\\.hyper$", | |
| "^lo\\.alarcitty$", | |
| "^net\\.kovidgoyal\\.kitty$" | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Terminal Meta key bindings", | |
| "manipulators": [ | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "a" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "a" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "b" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "b" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "c" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "c" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "d" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "d" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "e" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "e" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "f" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "f" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "g" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "g" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "h" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "h" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "i" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "i" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "j" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "j" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "k" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "k" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "l" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "l" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "m" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "m" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "n" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "n" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "o" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "o" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "p" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "p" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "q" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "q" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "r" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "r" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "s" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "s" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "t" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "t" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "u" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "u" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "v" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "v" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "w" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "w" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "x" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "x" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "y" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "y" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "z" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "z" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "0" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "0" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "1" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "1" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "2" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "2" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "3" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "3" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "4" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "4" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "5" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "5" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "6" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "6" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "7" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "7" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "8" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "8" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "9" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "9" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "comma" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "comma" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "slash" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "slash" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "period" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "period" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "semicolon" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "semicolon" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "quote" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "quote" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "open_bracket" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "open_bracket" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "left_arrow" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "left_arrow" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "right_arrow" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "right_arrow" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "up_arrow" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "up_arrow" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "down_arrow" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "down_arrow" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "backslash" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "backslash" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "hyphen" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "hyphen" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "equal_sign" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "equal_sign" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "grave_accent_and_tilde" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "grave_accent_and_tilde" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "close_bracket" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "close_bracket" | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "a", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "a", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "b", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "b", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "c", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "c", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "d", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "d", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "e", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "e", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "f", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "f", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "g", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "g", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "h", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "h", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "i", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "i", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "j", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "j", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "k", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "k", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "l", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "l", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "m", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "m", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "n", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "n", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "o", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "o", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "p", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "p", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "q", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "q", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "r", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "r", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "s", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "s", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "t", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "t", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "u", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "u", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "v", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "v", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "w", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "w", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "x", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "x", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "y", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "y", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "z", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "z", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "0", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "0", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "1", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "1", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "2", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "2", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "3", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "3", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "4", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "4", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "5", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "5", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "6", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "6", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "7", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "7", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "8", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "8", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "9", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "9", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "comma", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "comma", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "slash", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "slash", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "period", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "period", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "semicolon", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "semicolon", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "quote", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "quote", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "open_bracket", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "open_bracket", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "left_arrow", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "left_arrow", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "right_arrow", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "right_arrow", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "up_arrow", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "up_arrow", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "down_arrow", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "down_arrow", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "backslash", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "backslash", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "hyphen", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "hyphen", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "equal_sign", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "equal_sign", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "grave_accent_and_tilde", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "grave_accent_and_tilde", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "close_bracket", | |
| "modifiers": { "mandatory": [ "shift" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "close_bracket", | |
| "modifiers": [ "left_shift" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "a", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "a", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "b", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "b", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "c", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "c", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "d", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "d", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "e", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "e", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "f", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "f", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "g", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "g", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "h", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "h", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "i", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "i", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "j", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "j", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "k", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "k", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "l", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "l", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "m", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "m", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "n", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "n", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "o", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "o", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "p", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "p", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "q", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "q", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "r", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "r", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "s", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "s", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "t", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "t", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "u", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "u", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "v", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "v", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "w", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "w", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "x", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "x", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "y", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "y", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "z", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "z", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "0", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "0", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "1", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "1", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "2", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "2", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "3", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "3", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "4", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "4", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "5", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "5", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "6", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "6", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "7", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "7", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "8", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "8", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "9", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "9", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "comma", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "comma", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "slash", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "slash", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "period", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "period", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "semicolon", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "semicolon", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "quote", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "quote", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "open_bracket", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "open_bracket", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "left_arrow", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "left_arrow", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "right_arrow", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "right_arrow", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "up_arrow", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "up_arrow", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "down_arrow", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "down_arrow", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "backslash", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "backslash", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "hyphen", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "hyphen", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "equal_sign", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "equal_sign", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "grave_accent_and_tilde", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "grave_accent_and_tilde", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "close_bracket", | |
| "modifiers": { "mandatory": [ "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "close_bracket", | |
| "modifiers": [ "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "a", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "a", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "b", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "b", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "c", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "c", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "d", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "d", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "e", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "e", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "f", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "f", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "g", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "g", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "h", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "h", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "i", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "i", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "j", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "j", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "k", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "k", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "l", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "l", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "m", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "m", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "n", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "n", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "o", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "o", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "p", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "p", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "q", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "q", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "r", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "r", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "s", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "s", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "t", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "t", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "u", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "u", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "v", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "v", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "w", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "w", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "x", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "x", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "y", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "y", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "z", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "z", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "0", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "0", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "1", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "1", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "2", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "2", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "3", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "3", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "4", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "4", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "5", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "5", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "6", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "6", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "7", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "7", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "8", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "8", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "9", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "9", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "comma", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "comma", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "slash", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "slash", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "period", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "period", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "semicolon", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "semicolon", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "quote", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "quote", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "open_bracket", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "open_bracket", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "left_arrow", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "left_arrow", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "right_arrow", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "right_arrow", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "up_arrow", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "up_arrow", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "down_arrow", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "down_arrow", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "backslash", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "backslash", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "hyphen", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "hyphen", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "equal_sign", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "equal_sign", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "grave_accent_and_tilde", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "grave_accent_and_tilde", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "close_bracket", | |
| "modifiers": { "mandatory": [ "shift", "option" ] } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "escape" | |
| }, | |
| { | |
| "key_code": "close_bracket", | |
| "modifiers": [ "left_shift", "left_option" ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "variable_if", | |
| "name": "terminal_meta_mode", | |
| "value": 1 | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment