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 / unix / vim-6.2.tar.bz2 / vim-6.2.tar / vim62 / runtime / compiler / fortran_lf95.vim < prev    next >
Encoding:
Text File  |  2003-02-12  |  558 b   |  24 lines

  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: 2003 Feb. 12
  7.  
  8. if exists("current_compiler")
  9.   finish
  10. endif
  11. let current_compiler = "fortran_lf95"
  12.  
  13. let s:cposet=&cpoptions
  14. set cpoptions-=C
  15.  
  16. setlocal errorformat=\ %#%n-%t:\ \"%f\"\\,\ line\ %l:%m,
  17.       \Error\ LINK\.%n:%m,
  18.       \Warning\ LINK\.%n:%m,
  19.       \%-G%.%#
  20. setlocal makeprg=lf95
  21.  
  22. let &cpoptions=s:cposet
  23. unlet s:cposet
  24.