fortran_lf95.vim 631 B

12345678910111213141516171819202122232425
  1. " Vim compiler file
  2. " Compiler: Lahey/Fujitsu Fortran 95
  3. " URL: http://www.unb.ca/chem/ajit/compiler/fortran_lf95.vim
  4. " Maintainer: Ajit J. Thakkar (ajit AT unb.ca); <http://www.unb.ca/chem/ajit/>
  5. " Version: 0.2
  6. " Last Change: 2004 Mar 27
  7. " 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
  8. if exists("current_compiler")
  9. finish
  10. endif
  11. let current_compiler = "fortran_lf95"
  12. let s:cposet=&cpoptions
  13. set cpoptions-=C
  14. CompilerSet errorformat=\ %#%n-%t:\ \"%f\"\\,\ line\ %l:%m,
  15. \Error\ LINK\.%n:%m,
  16. \Warning\ LINK\.%n:%m,
  17. \%-G%.%#
  18. CompilerSet makeprg=lf95
  19. let &cpoptions=s:cposet
  20. unlet s:cposet