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 / compiler / fortran_elf90.vim < prev    next >
Encoding:
Text File  |  2010-08-15  |  802 b   |  34 lines

  1. " Vim compiler file
  2. " Compiler:    Essential Lahey Fortran 90
  3. "        Probably also works for Lahey Fortran 90
  4. " URL:        http://www.unb.ca/chem/ajit/compiler/fortran_elf90.vim
  5. " Maintainer:    Ajit J. Thakkar (ajit AT unb.ca); <http://www.unb.ca/chem/ajit/>
  6. " Version:    0.2
  7. " Last Change: 2004 Mar 27
  8.  
  9. if exists("current_compiler")
  10.   finish
  11. endif
  12. let current_compiler = "fortran_elf90"
  13.  
  14. if exists(":CompilerSet") != 2        " older Vim always used :setlocal
  15.   command -nargs=* CompilerSet setlocal <args>
  16. endif
  17.  
  18. let s:cposet=&cpoptions
  19. set cpoptions-=C
  20.  
  21. CompilerSet errorformat=\%ALine\ %l\\,\ file\ %f,
  22.       \%C%tARNING\ --%m,
  23.       \%C%tATAL\ --%m,
  24.       \%C%tBORT\ --%m,
  25.       \%+C%\\l%.%#\.,
  26.       \%C%p\|,
  27.       \%C%.%#,
  28.       \%Z%$,
  29.       \%-G%.%#
  30. CompilerSet makeprg=elf90
  31.  
  32. let &cpoptions=s:cposet
  33. unlet s:cposet
  34.