When using the application switcher triggered by Cmd
+Tab
, selecting an application does not necessarily bring forward the window of that application. One can however use the Option
key. Then, when releasing Cmd
+Tab
, the window will be brought forward.
I'm using this complex modification (from the repository) in Karabiner to remap Cmd
+Tab
to Cmd
+'
. How can I modify this so that Option
is inputted upon release of Cmd
? Simply adding it as a modifier doesn't work.
{
"description": "Use left_command+;/' to cycle through running applications (like command+tab).",
"manipulators": [
{
"from": {
"key_code": "quote",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "tab",
"modifiers": [
"left_command"
]
}
],
"type": "basic"
},
{
"from": {
"key_code": "semicolon",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "tab",
"modifiers": [
"left_command",
"left_shift"
]
}
],
"type": "basic"
}
]
},