Hi, sorry for the confusion. The below method is already possible with : shellpipe="%s 2>&1", and works well. Infact, vim sets this by default on Windows platforms.
A script I had which overloaded makeprg caused the issue. Regards, Ritesh ________________________________ From: Ritesh Banerjee <[email protected]> To: [email protected] Sent: Sun, November 28, 2010 11:26:47 PM Subject: :make possibility in Windows & Unix Hi, On Windows, there is no tee utility by default (though one could install a cygwin or mingw version, which I have done). So, "2>&1|tee" for shellpipe does not work for Windows clients w/o tee. However, if we could write the make command as : make > {errorfile} 2>&1 -> it does work exactly like in Unix, and both stdout & stderr go to {errorfile}. The sequence requirement is same as in *nix shells like bash. Does it make sense to have another variable like "redirextra", and modify :make to do make {arguments} {shellpipe} {makeef} {redirextra} ? Regards, Ritesh -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
