vote up 0 vote down star

I am new to the text editor Vim. I want to use it for programming C. I am using Windows and the bcc32 compiler from Borland. I cannot seem to get my C code to compile. I think something is wrong with my setup. Can someone give step by step information on how to setup Vim for compiling using BCC?

flag
thanks make more sense – thomasjnr Jul 21 at 0:35

2 Answers

vote up 1 vote down check

I've not used the bcc32 compiler, but I'm assuming it uses a different make tool than make. You'll need to put:

set makeprg=<make command>

Somewhere in your .vimrc file.

link|flag
thanks man, help a bit. – thomasjnr Jul 23 at 22:52
vote up 1 vote down

A Google search of vim and bcc led me to this page.

http://ftp.nluug.nl/vim/runtime/compiler/bcc.vim

You'll have to place this bcc.vim in the ~/vimfiles/compiler directory

link|flag
Almost. It must be placed in the ~/vimfiles/compiler/ directory. – Luc Hermitte Jul 20 at 14:17
thanks but still no luck. help!! – thomasjnr Jul 21 at 1:12

Your Answer

Get an OpenID
or

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