Skip to content

Switcheroo would be perfect for me with these four features (which I've put into an AutoHotKey script) #166

@robertalanbevan

Description

@robertalanbevan

I use Switcheroo for its visual clarity rather than for its typing-focused design. This little script is unbelievably useful to that end.

  1. Single-leftclick enters the cursor-selected window (normally, it requires a double-click).
  2. Mousewheel scroll cycles your selection up and down through the list of windows.
  3. Middle click closes the highlighted window (selected by mousewheel or tab, not by cursor).
  4. 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
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions