Created
December 25, 2025 16:04
-
-
Save jsstrn/cba5713e6189c0b22d33e9c68bd0ad85 to your computer and use it in GitHub Desktop.
Remap Insert and Delete keys to Browser Tab Navigation - Karabiner
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
| { | |
| "description": "Remap Insert and Delete to Browser Tab Navigation", | |
| "manipulators": [ | |
| { | |
| "description": "Insert to Ctrl+Shift+Tab", | |
| "from": { | |
| "key_code": "insert" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "tab", | |
| "modifiers": ["left_control", "left_shift"] | |
| } | |
| ], | |
| "type": "basic" | |
| }, | |
| { | |
| "description": "Delete Forward to Ctrl+Tab", | |
| "from": { | |
| "key_code": "delete_forward" | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "tab", | |
| "modifiers": ["left_control"] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment