mipspro_c89.vim 669 B

12345678910111213141516171819202122232425
  1. " Vim compiler file
  2. " Compiler: SGI IRIX 6.5 MIPSPro C (c89)
  3. " Maintainer: David Harrison <david_jr@users.sourceforge.net>
  4. " Last Change: 2012 Apr 30
  5. " 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
  6. if exists("current_compiler")
  7. finish
  8. endif
  9. let current_compiler = "mipspro_c89"
  10. let s:keepcpo= &cpo
  11. set cpo&vim
  12. CompilerSet errorformat=%Ecc\-%n\ %.%#:\ ERROR\ File\ =\ %f\%\\,\ Line\ =\ %l,
  13. \%Wcc\-%n\ %.%#:\ WARNING\ File\ =\ %f\%\\,\ Line\ =\ %l,
  14. \%Icc\-%n\ %.%#:\ REMARK\ File\ =\ %f\%\\,\ Line\ =\ %l,
  15. \%-Z%p%^,
  16. \%+C\ %\\{10}%m%.,
  17. \%+C\ \ %m,
  18. \%-G\\s%#,
  19. \%-G%.%#
  20. let &cpo = s:keepcpo
  21. unlet s:keepcpo