irix5_cpp.vim 671 B

123456789101112131415161718192021222324252627
  1. " Vim compiler file
  2. " Compiler: SGI IRIX 5.3 CC or NCC
  3. " Maintainer: David Harrison <david_jr@users.sourceforge.net>
  4. " Last Change: 2012 Apr 30
  5. if exists("current_compiler")
  6. finish
  7. endif
  8. let current_compiler = "irix5_cpp"
  9. let s:keepcpo= &cpo
  10. set cpo&vim
  11. if exists(":CompilerSet") != 2 " older Vim always used :setlocal
  12. command -nargs=* CompilerSet setlocal <args>
  13. endif
  14. CompilerSet errorformat=%E\"%f\"\\,\ line\ %l:\ error(%n):\ ,
  15. \%E\"%f\"\\,\ line\ %l:\ error(%n):\ %m,
  16. \%W\"%f\"\\,\ line\ %l:\ warning(%n):\ %m,
  17. \%+IC++\ prelinker:\ %m,
  18. \%-Z\ \ %p%^,
  19. \%+C\ %\\{10}%.%#,
  20. \%-G%.%#
  21. let &cpo = s:keepcpo
  22. unlet s:keepcpo