bcc.vim 397 B

1234567891011121314151617
  1. " Vim compiler file
  2. " Compiler: bcc - Borland C
  3. " Maintainer: Emile van Raaij (eraaij@xs4all.nl)
  4. " Last Change: 2004 Mar 27
  5. " 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
  6. if exists("current_compiler")
  7. finish
  8. endif
  9. let current_compiler = "bcc"
  10. " A workable errorformat for Borland C
  11. CompilerSet errorformat=%*[^0-9]%n\ %f\ %l:\ %m
  12. " default make
  13. CompilerSet makeprg=make