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?
views:
483answers:
2
+1
A:
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.
Weegee
2009-07-20 14:09:13
thanks man, help a bit.
2009-07-23 22:52:32
+1
A:
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
Michael McCarty
2009-07-20 14:10:01
I've changed the line:let current_compiler = "bcc"tolet current_compiler = "bcc32"
Saabi
2010-04-13 17:16:28