tags:

views:

187

answers:

1

I know there is a way to make vim run scons instead of make when I press :make.

I had an option that did this in my ~/.vimrc but I removed it a while ago and forgot what it was.

+5  A: 

Set makeprg. I'm not sure if any options are required for scons, but it might look like:

set makeprg=scons
jheddings