fortran_elf90.vim 750 B

12345678910111213141516171819202122232425262728293031
  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. " 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
  9. if exists("current_compiler")
  10. finish
  11. endif
  12. let current_compiler = "fortran_elf90"
  13. let s:cposet=&cpoptions
  14. set cpoptions-=C
  15. CompilerSet errorformat=\%ALine\ %l\\,\ file\ %f,
  16. \%C%tARNING\ --%m,
  17. \%C%tATAL\ --%m,
  18. \%C%tBORT\ --%m,
  19. \%+C%\\l%.%#\.,
  20. \%C%p\|,
  21. \%C%.%#,
  22. \%Z%$,
  23. \%-G%.%#
  24. CompilerSet makeprg=elf90
  25. let &cpoptions=s:cposet
  26. unlet s:cposet