Skip to content

Instantly share code, notes, and snippets.

@pietrofxq
Last active March 17, 2022 01:23
Show Gist options
  • Save pietrofxq/81eb0e2ca570cb20f0dce55c30a109a2 to your computer and use it in GitHub Desktop.
Save pietrofxq/81eb0e2ca570cb20f0dce55c30a109a2 to your computer and use it in GitHub Desktop.
; NEEDS '*' because LCtrl key-repeat is otherwise interpreted as ALT+LCtrl.
*LCtrl::
CtrlTabbed := false`
Hotkey, *Tab, CtrlTab, On ; Begin Ctrl+Tab (and release Alt) when we press Tab.
Send {Alt Down} ; Press Alt (LCtrl::Alt)
KeyWait, LCtrl
if CtrlTabbed
Send {Ctrl Up} ; Release Ctrl after Ctrl+Tabbing.
else
Send {Alt Up} ; Release Alt (LCtrl::Alt)
Hotkey, *Tab, CtrlTab, Off
return
CtrlTab:
if (!CtrlTabbed) {
Send {Alt Up} ; Release Alt now.
Send {Ctrl Down} ; Press down Ctrl.
CtrlTabbed := true ; Set a flag so we know to release Ctrl instead of Alt.
}
Send {Blind}{Tab} ; Press Tab without releasing any modifiers.
return
; If you want LCtrl and LAlt to both do Alt+Tab, replace all of the above with:
; LCtrl::Alt
; NEEDS '*' because LAlt key-repeat is otherwise interpreted as CTRL+LAlt.
*LAlt::
AltTabbed := false
Hotkey, *Tab, AltTab, On ; Begin Alt+Tab (and release Ctrl) when we press Tab.
Send {Ctrl Down} ; Press Ctrl (LAlt::Ctrl)
KeyWait, LAlt
if AltTabbed
Send {Alt Up} ; Release Alt after Alt+Tabbing.
else
Send {Ctrl Up} ; Release Ctrl (LAlt::Ctrl)
Hotkey, *Tab, AltTab, Off
return
AltTab:
if (!AltTabbed) {
Send {Ctrl Up} ; Release Ctrl now.
Send {Alt Down} ; Press down Alt. (Keeps the Alt+Tab menu open.)
AltTabbed := true ; Set a flag so we know to release Alt instead of Ctrl.
}
Send {Blind}{Tab} ; Press Tab without releasing any modifiers.
return
+End::ExitApp ; to stop running script
Return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment