OpenInSplittedTab icon indicating copy to clipboard operation
OpenInSplittedTab copied to clipboard

Abandoned project! Post workarounds here

Open raveren opened this issue 1 month ago • 0 comments

I wish this gets closed as misleading but at the time of writing this seems true, the excellent plugin is fully abandoned with no real alternative.

So if you can't live without this as can't I, here's my poor man's workaround for Windows.

Requires autohotkey v2:

; taken from https://gist.github.com/raveren/bac5196d2063665d2154/edit
#HotIf WinActive("ahk_exe phpstorm64.exe")
    ; Hold left mouse button and click the right one to (attempt to) open the defiition in opposite pane
    ~LButton & RButton::{
        Click
        Sleep(50)
        SendInput("!g") ; mapped to "Open in opposite group"
        Sleep(50)
        SendInput("^b") ; go to definition
    }
#HotIf

raveren avatar Oct 21 '25 15:10 raveren