tags:

views:

257

answers:

4
+2  A: 

That error suggests that Vim cannot find make.

Troubleshooting steps:

  • Is make installed?
  • Is the directory containing the make executable in your path?
  • Can you run make from the command line?
  • Can you run make from inside of vim?

Information that would help:

  • Which version of Windows are you using?
A: 

Is the path to make in your system path? I would check there first.

Matthew Vines
+1  A: 
Sinan Ünür
thanks for your help
@thomasjnr You are welcome. Thank you for accepting my answer.
Sinan Ünür
+3  A: 

Take a look at Introduction to Programming in C/C++ with Vim.

In this situation VIM is looking for your make.exe. Either put this on the path, or set the variable makeprg e.g.

:set makeprg={path to your make exe}
Brian Agnew