blob: bc217bdc66512d0607af1ac288c3a9cb5dff6097 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim compiler file
2" Compiler: Compaq Visual Fortran
3" Maintainer: Joh.-G. Simon (johann-guenter.simon@linde-le.com)
4" Last Change: 11/05/2002
5
6if exists("current_compiler")
7 finish
8endif
9let current_compiler = "fortran_cv"
10
11if exists(":CompilerSet") != 2 " older Vim always used :setlocal
12 command -nargs=* CompilerSet setlocal <args>
13endif
14
15let s:cposet = &cpoptions
16set cpoptions-=C
17
18" A workable errorformat for Compaq Visual Fortran
19CompilerSet errorformat=
20 \%E%f(%l)\ :\ Error:%m,
21 \%W%f(%l)\ :\ Warning:%m,
22 \%-Z%p%^%.%#,
23 \%-G%.%#,
24" Compiler call
Bram Moolenaar54775062019-07-31 21:07:14 +020025CompilerSet makeprg=df\ /nologo\ /noobj\ /c\ %:S
Bram Moolenaar071d4272004-06-13 20:20:40 +000026" Visual fortran defaults to printing output on stderr
27" Adjust option shellpipe accordingly
28
29let &cpoptions = s:cposet
30unlet s:cposet