Skip to content

Instantly share code, notes, and snippets.

@Qyriad
Created February 23, 2023 18:26
Show Gist options
  • Select an option

  • Save Qyriad/e03a18f50e911a41663daaeb517bd520 to your computer and use it in GitHub Desktop.

Select an option

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
{
"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