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/>
6 " Last Change: 2004 Mar 27
8 if exists("current_compiler")
11 let current_compiler = "fortran_F"
13 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
14 command -nargs=* CompilerSet setlocal <args>
17 let s:cposet=&cpoptions
20 CompilerSet errorformat=%trror:\ %f\\,\ line\ %l:%m,
21 \%tarning:\ %f\\,\ line\ %l:%m,
22 \%tatal\ Error:\ %f\\,\ line\ %l:%m,
26 let &cpoptions=s:cposet