I want to be able to execute a command in the currently visible conemu console from another process. Specifically i want to dispatch my build command from a gvim instance started from inside this ConEmu console (so it has various variables set by ConEmu like ConEmuHWND etc... that i think are the key to the solution).
So far i've been close with this one:
!start ConEmuC.exe /ATTACH /GHWND=<ConEmuHwnd from env var here> /C <my build command>
Which opens adds a new tab in my ConEmu window and executes the command given. Is some thing like this possible?