I am trying to configure vim on windows to work the same way as on Linux. Basically, when I type ": make" in linux, I get makeprg output like streaming through vim itself.
In windows, I get a cmd hint that appears, but beyond vim. I need to switch focus to view the results until they are complete, and then they can be viewed in the quick fix window.
I tried to download a copy of "tee" and install shellpipe to | tee, but that hasn’t changed anything. Below are the corresponding settings in my vimrc, I use a ninja, but the same thing happens if I switch to nmake or something like that.
set makeprg=ninja\ -C\ build-ninja set shellpipe=2>&1\ \|tee set efm+=%Dninja:\ Entering\ directory\ `%f',%Xninja:\ leaving\ directory
source share