blob: 7f6ec818e050bb62552f8b53fc06c21e67eba9e3 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" 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
Doug Kearns408281e2024-04-04 22:00:58 +02006" Last Change: 2004 Mar 27
7" 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008
9if exists("current_compiler")
10 finish
11endif
12let current_compiler = "fortran_F"
13
Bram Moolenaar071d4272004-06-13 20:20:40 +000014let s:cposet=&cpoptions
15set cpoptions-=C
16
17CompilerSet errorformat=%trror:\ %f\\,\ line\ %l:%m,
18 \%tarning:\ %f\\,\ line\ %l:%m,
19 \%tatal\ Error:\ %f\\,\ line\ %l:%m,
20 \%-G%.%#
21CompilerSet makeprg=F
22
23let &cpoptions=s:cposet
24unlet s:cposet