Skip to content

Instantly share code, notes, and snippets.

@jsstrn
Created December 25, 2025 16:04
Show Gist options
  • Select an option

  • Save jsstrn/cba5713e6189c0b22d33e9c68bd0ad85 to your computer and use it in GitHub Desktop.

Select an option

Save jsstrn/cba5713e6189c0b22d33e9c68bd0ad85 to your computer and use it in GitHub Desktop.
Remap Insert and Delete keys to Browser Tab Navigation - Karabiner
{
"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