Skip to content

Instantly share code, notes, and snippets.

@philc
Created February 11, 2024 05:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save philc/43cbc114ac922df3b83cc0c23b6059eb to your computer and use it in GitHub Desktop.
Save philc/43cbc114ac922df3b83cc0c23b6059eb to your computer and use it in GitHub Desktop.
Karabiner Elements tab switching shortcuts
{
"description": "Tab switching: Change Cmd-j to Cmd-Alt-left",
"manipulators": [
{
"from": {
"key_code": "j",
"modifiers": {
"mandatory": [
"command"
]
}
},
"to": [
{
"key_code": "left_arrow",
"modifiers": [
"command",
"option"
]
}
],
"type": "basic"
}
]
},
{
"description": "Tab switching: Change Cmd-k to Cmd-Alt-right",
"manipulators": [
{
"from": {
"key_code": "k",
"modifiers": {
"mandatory": [
"command"
]
}
},
"to": [
{
"key_code": "right_arrow",
"modifiers": [
"command",
"option"
]
}
],
"type": "basic"
}
]
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment