neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

fortran_F.vim (650B)


      1 " Vim compiler file
      2 " Compiler:	Fortran Company/NAGWare F compiler
      3 " URL:		http://www.unb.ca/chem/ajit/compiler/fortran_F.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 
      9 if exists("current_compiler")
     10  finish
     11 endif
     12 let current_compiler = "fortran_F"
     13 
     14 let s:cposet=&cpoptions
     15 set cpoptions-=C
     16 
     17 CompilerSet errorformat=%trror:\ %f\\,\ line\ %l:%m,
     18      \%tarning:\ %f\\,\ line\ %l:%m,
     19      \%tatal\ Error:\ %f\\,\ line\ %l:%m,
     20      \%-G%.%#
     21 CompilerSet makeprg=F
     22 
     23 let &cpoptions=s:cposet
     24 unlet s:cposet