home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 January / Disc 3 / Amethyst.iso / live / usr / share / vim / vim60 / compiler / bcc.vim < prev    next >
Encoding:
Text File  |  2002-06-19  |  325 b   |  16 lines

  1. " Vim compiler file
  2. " Compiler:        bcc - Borland C
  3. " Maintainer:    Emile van Raaij (eraaij@xs4all.nl)
  4. " Last Change:    2001 Sep 24
  5.  
  6. if exists("current_compiler")
  7.   finish
  8. endif
  9. let current_compiler = "bcc"
  10.  
  11. " A workable errorformat for Borland C 
  12. setlocal errorformat=%*[^0-9]%n\ %f\ %l:\ %m
  13.  
  14. " default make
  15. setlocal makeprg=make 
  16.