dotfiles/mac/karabiner/fn-tab_to_cmd-tab.json
2024-10-04 11:00:46 +01:00

24 lines
No EOL
536 B
JSON

{
"description": "Map fn+tab to cmd+tab",
"manipulators": [
{
"from": {
"key_code": "tab",
"modifiers": {
"mandatory": [
"fn"
]
}
},
"to": [
{
"key_code": "tab",
"modifiers": [
"left_command"
]
}
],
"type": "basic"
}
]
}