OpenInSplittedTab
OpenInSplittedTab copied to clipboard
Abandoned project! Post workarounds here
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