Created
February 23, 2023 18:26
-
-
Save Qyriad/e03a18f50e911a41663daaeb517bd520 to your computer and use it in GitHub Desktop.
Karabiner Elements complex modification to map Ctrl-PageUp/PageDown tab navigation to Safari Ctrl-Shift-Tab/Ctrl-Tab navigation
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": "Map Ctrl-PageUp and Ctrl-PageDown to Ctrl-Tab and Ctrl-Shift-Tab", | |
| "rules": [ | |
| { | |
| "description": "Map Ctrl-PageUp to Ctrl-Shift-Tab", | |
| "manipulators": [ | |
| { | |
| "type": "basic", | |
| "from": { | |
| "modifiers": { | |
| "mandatory": [ | |
| "left_control" | |
| ] | |
| }, | |
| "key_code": "page_up" | |
| }, | |
| "to": [ | |
| { | |
| "repeat": true, | |
| "key_code": "tab", | |
| "modifiers": [ | |
| "left_control", | |
| "left_shift" | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "description": "Map Ctrl-PageDown to Ctrl-Tab", | |
| "manipulators": [ | |
| { | |
| "type": "basic", | |
| "from": { | |
| "modifiers": { | |
| "mandatory": [ | |
| "left_control" | |
| ] | |
| }, | |
| "key_code": "page_down" | |
| }, | |
| "to": [ | |
| { | |
| "repeat": true, | |
| "key_code": "tab", | |
| "modifiers": [ | |
| "left_control" | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment