Windows-like keyboard shortcuts inspired by karabiner-windows-mode
- Open
~/.config/karabiner/ - Replace
karabiner.json
See the offical document for the latest information.
| { | |
| "global": { | |
| "ask_for_confirmation_before_quitting": true, | |
| "check_for_updates_on_startup": true, | |
| "show_in_menu_bar": true, | |
| "show_profile_name_in_menu_bar": false, | |
| "unsafe_ui": false | |
| }, | |
| "profiles": [ | |
| { | |
| "complex_modifications": { | |
| "parameters": { | |
| "basic.simultaneous_threshold_milliseconds": 50, | |
| "basic.to_delayed_action_delay_milliseconds": 500, | |
| "basic.to_if_alone_timeout_milliseconds": 1000, | |
| "basic.to_if_held_down_threshold_milliseconds": 500, | |
| "mouse_motion_to_scroll.speed": 100 | |
| }, | |
| "rules": [ | |
| { | |
| "description": "Insert (Ctrl) [+Terminal Emulators]", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "insert", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "c", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Insert (Shift) [+Terminal Emulators]", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "insert", | |
| "modifiers": { | |
| "mandatory": [ | |
| "shift" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "v", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Home", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "home", | |
| "modifiers": { | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "left_arrow", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Home (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "home", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "up_arrow", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Home (Shift)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "home", | |
| "modifiers": { | |
| "mandatory": [ | |
| "shift" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "left_arrow", | |
| "modifiers": [ | |
| "command", | |
| "shift" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Home (Ctrl+Shift)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "home", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control", | |
| "shift" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "up_arrow", | |
| "modifiers": [ | |
| "command", | |
| "shift" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "End", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "end", | |
| "modifiers": { | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "right_arrow", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "End (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "end", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "down_arrow", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "End (Shift)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "end", | |
| "modifiers": { | |
| "mandatory": [ | |
| "shift" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "right_arrow", | |
| "modifiers": [ | |
| "command", | |
| "shift" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "End (Ctrl+Shift)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "end", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control", | |
| "shift" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "down_arrow", | |
| "modifiers": [ | |
| "command", | |
| "shift" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Left Arrow (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "left_arrow", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "left_arrow", | |
| "modifiers": [ | |
| "option" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Left Arrow (Ctrl+Shift)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "left_arrow", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control", | |
| "shift" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "left_arrow", | |
| "modifiers": [ | |
| "option", | |
| "shift" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Right Arrow (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "right_arrow", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "right_arrow", | |
| "modifiers": [ | |
| "option" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Right Arrow (Ctrl+Shift)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "right_arrow", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control", | |
| "shift" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "right_arrow", | |
| "modifiers": [ | |
| "option", | |
| "shift" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Backspace (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "delete_or_backspace", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "delete_or_backspace", | |
| "modifiers": [ | |
| "option" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Delete (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "delete_forward", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "delete_forward", | |
| "modifiers": [ | |
| "option" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Enter (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "return_or_enter", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "return_or_enter", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Enter (Ctrl+Shift)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "return_or_enter", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control", | |
| "shift" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "return_or_enter", | |
| "modifiers": [ | |
| "command", | |
| "shift" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "A (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "a", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "a", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "B (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "b", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "b", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "C (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "c", | |
| "modifiers": { | |
| "mandatory": [ | |
| "left_control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "c", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "C (Ctrl+Shift) [Only Terminal Emulators]", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "type": "frontmost_application_if" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "c", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control", | |
| "shift" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "c", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "F (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "f", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "f", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "I (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "i", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "i", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "L (Win) [Lock Screen]", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "l", | |
| "modifiers": { | |
| "mandatory": [ | |
| "command" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "q", | |
| "modifiers": [ | |
| "control", | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "L (Alt+Ctrl) [Lock Screen]", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "l", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control", | |
| "option" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "q", | |
| "modifiers": [ | |
| "control", | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "N (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "n", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "n", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "O (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "o", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "o", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "P (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "p", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "p", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "R (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "r", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "r", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "S (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "s", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "s", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "T (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "t", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "t", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "U (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "u", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "u", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "V (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "v", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "v", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "V (Ctrl+Shift) [Only Terminal Emulators]", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "type": "frontmost_application_if" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "v", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control", | |
| "shift" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "v", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "W (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "w", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "w", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "X (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "x", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "x", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Y (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "y", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "y", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Z (Ctrl)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$", | |
| "^io\\.alacritty$", | |
| "^co\\.zeit\\.hyper$", | |
| "^com\\.googlecode\\.iterm2$", | |
| "^com\\.apple\\.Terminal$", | |
| "^com\\.github\\.wez\\.wezterm$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "z", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "z", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "/ (Ctrl) [+Terminal Emulators]", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^org\\.virtualbox\\.app\\.VirtualBoxVM$", | |
| "^com\\.parallels\\.desktop\\.console$", | |
| "^org\\.vmware\\.fusion$", | |
| "^org\\.gnu\\.emacs$", | |
| "^com\\.jetbrains", | |
| "^com\\.sublimetext\\.3$", | |
| "^net\\.kovidgoyal\\.kitty$", | |
| "^com\\.citrix\\.XenAppViewer$", | |
| "^com\\.microsoft\\.rdc\\.macos$" | |
| ], | |
| "file_paths": [ | |
| "Chrome Remote Desktop\\.app" | |
| ], | |
| "type": "frontmost_application_unless" | |
| } | |
| ], | |
| "from": { | |
| "key_code": "slash", | |
| "modifiers": { | |
| "mandatory": [ | |
| "control" | |
| ], | |
| "optional": [ | |
| "any" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "slash", | |
| "modifiers": [ | |
| "command" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "devices": [ | |
| { | |
| "disable_built_in_keyboard_if_exists": false, | |
| "fn_function_keys": [], | |
| "game_pad_swap_sticks": false, | |
| "identifiers": { | |
| "is_game_pad": false, | |
| "is_keyboard": true, | |
| "is_pointing_device": false, | |
| "product_id": 0, | |
| "vendor_id": 0 | |
| }, | |
| "ignore": false, | |
| "manipulate_caps_lock_led": true, | |
| "mouse_flip_horizontal_wheel": false, | |
| "mouse_flip_vertical_wheel": false, | |
| "mouse_flip_x": false, | |
| "mouse_flip_y": false, | |
| "mouse_swap_wheels": false, | |
| "mouse_swap_xy": false, | |
| "simple_modifications": [], | |
| "treat_as_built_in_keyboard": false | |
| }, | |
| { | |
| "disable_built_in_keyboard_if_exists": false, | |
| "fn_function_keys": [], | |
| "game_pad_swap_sticks": false, | |
| "identifiers": { | |
| "is_game_pad": false, | |
| "is_keyboard": false, | |
| "is_pointing_device": true, | |
| "product_id": 0, | |
| "vendor_id": 0 | |
| }, | |
| "ignore": true, | |
| "manipulate_caps_lock_led": false, | |
| "mouse_flip_horizontal_wheel": false, | |
| "mouse_flip_vertical_wheel": false, | |
| "mouse_flip_x": false, | |
| "mouse_flip_y": false, | |
| "mouse_swap_wheels": false, | |
| "mouse_swap_xy": false, | |
| "simple_modifications": [], | |
| "treat_as_built_in_keyboard": false | |
| }, | |
| { | |
| "disable_built_in_keyboard_if_exists": false, | |
| "fn_function_keys": [], | |
| "game_pad_swap_sticks": false, | |
| "identifiers": { | |
| "is_game_pad": false, | |
| "is_keyboard": true, | |
| "is_pointing_device": false, | |
| "product_id": 33, | |
| "vendor_id": 1278 | |
| }, | |
| "ignore": false, | |
| "manipulate_caps_lock_led": true, | |
| "mouse_flip_horizontal_wheel": false, | |
| "mouse_flip_vertical_wheel": false, | |
| "mouse_flip_x": false, | |
| "mouse_flip_y": false, | |
| "mouse_swap_wheels": false, | |
| "mouse_swap_xy": false, | |
| "simple_modifications": [], | |
| "treat_as_built_in_keyboard": false | |
| }, | |
| { | |
| "disable_built_in_keyboard_if_exists": false, | |
| "fn_function_keys": [], | |
| "game_pad_swap_sticks": false, | |
| "identifiers": { | |
| "is_game_pad": false, | |
| "is_keyboard": true, | |
| "is_pointing_device": true, | |
| "product_id": 45077, | |
| "vendor_id": 1133 | |
| }, | |
| "ignore": true, | |
| "manipulate_caps_lock_led": true, | |
| "mouse_flip_horizontal_wheel": false, | |
| "mouse_flip_vertical_wheel": false, | |
| "mouse_flip_x": false, | |
| "mouse_flip_y": false, | |
| "mouse_swap_wheels": false, | |
| "mouse_swap_xy": false, | |
| "simple_modifications": [], | |
| "treat_as_built_in_keyboard": false | |
| }, | |
| { | |
| "disable_built_in_keyboard_if_exists": false, | |
| "fn_function_keys": [], | |
| "game_pad_swap_sticks": false, | |
| "identifiers": { | |
| "is_game_pad": false, | |
| "is_keyboard": true, | |
| "is_pointing_device": false, | |
| "product_id": 24745, | |
| "vendor_id": 6127 | |
| }, | |
| "ignore": false, | |
| "manipulate_caps_lock_led": true, | |
| "mouse_flip_horizontal_wheel": false, | |
| "mouse_flip_vertical_wheel": false, | |
| "mouse_flip_x": false, | |
| "mouse_flip_y": false, | |
| "mouse_swap_wheels": false, | |
| "mouse_swap_xy": false, | |
| "simple_modifications": [], | |
| "treat_as_built_in_keyboard": false | |
| }, | |
| { | |
| "disable_built_in_keyboard_if_exists": false, | |
| "fn_function_keys": [], | |
| "game_pad_swap_sticks": false, | |
| "identifiers": { | |
| "is_game_pad": false, | |
| "is_keyboard": false, | |
| "is_pointing_device": true, | |
| "product_id": 24745, | |
| "vendor_id": 6127 | |
| }, | |
| "ignore": true, | |
| "manipulate_caps_lock_led": false, | |
| "mouse_flip_horizontal_wheel": false, | |
| "mouse_flip_vertical_wheel": false, | |
| "mouse_flip_x": false, | |
| "mouse_flip_y": false, | |
| "mouse_swap_wheels": false, | |
| "mouse_swap_xy": false, | |
| "simple_modifications": [], | |
| "treat_as_built_in_keyboard": false | |
| } | |
| ], | |
| "fn_function_keys": [ | |
| { | |
| "from": { | |
| "key_code": "f1" | |
| }, | |
| "to": [ | |
| { | |
| "consumer_key_code": "display_brightness_decrement" | |
| } | |
| ] | |
| }, | |
| { | |
| "from": { | |
| "key_code": "f2" | |
| }, | |
| "to": [ | |
| { | |
| "consumer_key_code": "display_brightness_increment" | |
| } | |
| ] | |
| }, | |
| { | |
| "from": { | |
| "key_code": "f3" | |
| }, | |
| "to": [ | |
| { | |
| "apple_vendor_keyboard_key_code": "mission_control" | |
| } | |
| ] | |
| }, | |
| { | |
| "from": { | |
| "key_code": "f4" | |
| }, | |
| "to": [ | |
| { | |
| "apple_vendor_keyboard_key_code": "spotlight" | |
| } | |
| ] | |
| }, | |
| { | |
| "from": { | |
| "key_code": "f5" | |
| }, | |
| "to": [ | |
| { | |
| "consumer_key_code": "dictation" | |
| } | |
| ] | |
| }, | |
| { | |
| "from": { | |
| "key_code": "f6" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "f6" | |
| } | |
| ] | |
| }, | |
| { | |
| "from": { | |
| "key_code": "f7" | |
| }, | |
| "to": [ | |
| { | |
| "consumer_key_code": "rewind" | |
| } | |
| ] | |
| }, | |
| { | |
| "from": { | |
| "key_code": "f8" | |
| }, | |
| "to": [ | |
| { | |
| "consumer_key_code": "play_or_pause" | |
| } | |
| ] | |
| }, | |
| { | |
| "from": { | |
| "key_code": "f9" | |
| }, | |
| "to": [ | |
| { | |
| "consumer_key_code": "fast_forward" | |
| } | |
| ] | |
| }, | |
| { | |
| "from": { | |
| "key_code": "f10" | |
| }, | |
| "to": [ | |
| { | |
| "consumer_key_code": "mute" | |
| } | |
| ] | |
| }, | |
| { | |
| "from": { | |
| "key_code": "f11" | |
| }, | |
| "to": [ | |
| { | |
| "consumer_key_code": "volume_decrement" | |
| } | |
| ] | |
| }, | |
| { | |
| "from": { | |
| "key_code": "f12" | |
| }, | |
| "to": [ | |
| { | |
| "consumer_key_code": "volume_increment" | |
| } | |
| ] | |
| } | |
| ], | |
| "name": "Default profile", | |
| "parameters": { | |
| "delay_milliseconds_before_open_device": 1000 | |
| }, | |
| "selected": true, | |
| "simple_modifications": [ | |
| { | |
| "from": { | |
| "key_code": "caps_lock" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "left_control" | |
| } | |
| ] | |
| } | |
| ], | |
| "virtual_hid_keyboard": { | |
| "country_code": 0, | |
| "indicate_sticky_modifier_keys_state": true, | |
| "mouse_key_xy_scale": 100 | |
| } | |
| } | |
| ] | |
| } |
Windows-like keyboard shortcuts inspired by karabiner-windows-mode
~/.config/karabiner/karabiner.jsonSee the offical document for the latest information.