I use Switcheroo for its visual clarity rather than for its typing-focused design. This little script is unbelievably useful to that end.
- Single-leftclick enters the cursor-selected window (normally, it requires a double-click).
- Mousewheel scroll cycles your selection up and down through the list of windows.
- Middle click closes the highlighted window (selected by mousewheel or tab, not by cursor).
- Letting go of alt automatically opens the selected window, like in normal alt-tabbing.
{
#IfWinExist ahk_exe switcheroo.exe
~LButton::
SendInput, {LButton Down}
return
!MButton::
Send ^w
return
!Alt Up::
SendInput {Enter Up}
return
!WheelDown::
SendInput {down}
return
!WheelUp::
SendInput {up}
return
#IfWinExist
}
I use Switcheroo for its visual clarity rather than for its typing-focused design. This little script is unbelievably useful to that end.