bcc.vim 449 B

1234567891011121314151617181920
  1. " Vim compiler file
  2. " Compiler: bcc - Borland C
  3. " Maintainer: Emile van Raaij (eraaij@xs4all.nl)
  4. " Last Change: 2004 Mar 27
  5. if exists("current_compiler")
  6. finish
  7. endif
  8. let current_compiler = "bcc"
  9. if exists(":CompilerSet") != 2 " older Vim always used :setlocal
  10. command -nargs=* CompilerSet setlocal <args>
  11. endif
  12. " A workable errorformat for Borland C
  13. CompilerSet errorformat=%*[^0-9]%n\ %f\ %l:\ %m
  14. " default make
  15. CompilerSet makeprg=make