home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / runtime / dos / compiler / intel.vim < prev    next >
Encoding:
Text File  |  2012-05-31  |  621 b   |  27 lines

  1. " Vim compiler file
  2. " Compiler:     Intel C++ 7.1
  3. " Maintainer:   David Harrison <david_jr@users.sourceforge.net>
  4. " Last Change:  2012 Apr 30
  5.  
  6. if exists("current_compiler")
  7.   finish
  8. endif
  9. let current_compiler = "intel"
  10. let s:keepcpo= &cpo
  11. set cpo&vim
  12.  
  13. if exists(":CompilerSet") != 2        " older Vim always used :setlocal
  14.   command -nargs=* CompilerSet setlocal <args>
  15. endif
  16.  
  17. CompilerSet errorformat=%E%f(%l):\ error:\ %m,
  18.             \%W%f(%l):\ warning:\ %m,
  19.             \%I%f(%l):\ remark\ #%n:\ %m,
  20.             \%+C\ \ %m.,
  21.             \%-Z\ \ %p^,
  22.             \%-G\\s%#,
  23.             \%-G%.%#
  24.  
  25. let &cpo = s:keepcpo
  26. unlet s:keepcpo
  27.