Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

2 Answers

up vote 9 down vote accepted

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

set makeprg=scons
share|improve this answer

I had the same problem this weekend. I didn't want to type :set makeprg=scons every time I started Vim or hard-code 'makeprg' in my .vimrc, because I use make for some projects, maven for others, rake..., et cetera ...

So today I wrote a Vim plugin called Makeshift to determine what to call for :make by looking for known files (Makefile, SConstruct, pom.xml, ...) and setting 'makeprg' accordingly.

Details are on vim.org for DoR and future visitors to this question.

share|improve this answer
1  
+1 Well, that's just... awesome. Thank you. – Sardathrion Oct 26 '12 at 8:21
@Sardathrion: I'm delighted you have found it useful. – Johnsyweb Oct 26 '12 at 21:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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