up vote 22 down vote favorite
12
share [g+] share [fb]

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.

link|improve this question

78% accept rate
did u find a good solution for this – Yogesh Arora Mar 12 '10 at 18:54
@pydave created a plugin called AsyncCommand which achieves most of the items listed in the question except seeing the make process in action. – Amjith Feb 23 '11 at 20:53
feedback

6 Answers

up vote 11 down vote accepted

What I do is

:!gvim -c 'MyMake'

( 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:
You can redirect make progress to some file from the shell or within vim (:!make&). And then by using

:cfile make_result_file

:cw
 or
:copen 20

Achieve the same result as you'd use :make

link|improve this answer
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 AsyncMake command.

Add the script to your .vim/plugin and you can build with :AsyncMake or :AsyncMake target. Errors will be opened in your quickfix once the make completes.


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

call <SID>Async_Impl(tool_cmd, vim_cmd)

to

call <SID>Async_Impl(tool_cmd, vim_cmd)
call <SID>Async_Impl("tail -f ". temp_file, "")

That should change all Async commands to open up a second command window with the output.

link|improve this answer
Hey thanks for making that plugin. Is there a way to see the make process in action? I'm using Win XP and the command window is blank until the make process is complete then the quickfix window opens. – Amjith Feb 23 '11 at 20:52
I forgot that the command window shows nothing. I've modified the answer to give a potential workaround. – pydave Feb 24 '11 at 22:31
I added the lines you mentioned above, but I still have blank command window. I'm in Window XP and I do have tail in my path. I even included the full path to the tail command. – Amjith Feb 25 '11 at 15:49
1  
I don't have a Win machine to test on, but you could try replacing the line with printf with let tool_cmd = a:command . "| tee ". temp_file However you might need to add 2>&1 before tee to see any stderr output. – pydave Feb 27 '11 at 1:51
feedback

Try using

:!start make

(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).

link|improve this answer
2  
:!start make works fine if you are just trying to spawn a make process. I am looking to use the in build feature of gvim where it reads the errors into vim and you can jump to the error in source code by double clicking on it. – Amjith Mar 20 '09 at 15:38
feedback

I would use your OS's inbuilt methods for running background tasks.

On windows, try typing

:!start make

On linux / mac os x, try

:!make > /dev/null 2>&1 &
link|improve this answer
2  
:!start make works fine if you are just trying to spawn a make process. I am looking to use the in build feature of gvim where it reads the errors into vim and you can jump to the error in source code by double clicking on it. – Amjith Mar 20 '09 at 15:36
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)

link|improve this answer
feedback

see this script

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.