I use gVim in windows to edit my code (mostly C++). I use :make in gVim to compile the project, but this is a blocking operation, that prevents me from using gVim until the compilation is complete. How can I do :make asynchronously and still get the benefits of reading the errors back into Vim and jump to the errors in source code? Bonus points if I get to see the make process in real time. Right now the :make redirects the output into a file, hence I don't get to see the progress of make.
feedback
|
|
What I do is
( where MyMake is the custom command which can switch to appropriate dir, make, and copen 20. ) and I am doing my job while build goes in the other window. Other option:
Achieve the same result as you'd use :make | ||||
|
feedback
|
|
Have a look at my AsyncCommand plugin. It's just wraps the vim syntax required to execute something and load it with --remote. I've uploaded AsyncCommand 2.0 that includes an Add the script to your Responding to comment for more readable code: To see the build results on Windows, if you have cygwin/unxutils/something with tail in your path, then in asynccommand.vim, change
to
That should change all Async commands to open up a second command window with the output. | |||||||||||
feedback
|
|
Try using
(more info on ":help !start") - that way vim doesn't have to wait for the process started to finish - you can just keep on going with your editing). | |||||
feedback
|
|
I would use your OS's inbuilt methods for running background tasks. On windows, try typing
On linux / mac os x, try
| |||||
feedback
|
|
You won't be able to see the progress of make. And as you run on windows, you'll have to check Marc Weber plugin to do background compilation -- mine (BuildToolsWrapper works only under *nix) | ||||
|
feedback
|
|
see this script | |||
|
feedback
|