Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | " Vim compiler file |
| 2 | " Compiler: Essential Lahey Fortran 90 |
| 3 | " Probably also works for Lahey Fortran 90 |
| 4 | " URL: http://www.unb.ca/chem/ajit/compiler/fortran_elf90.vim |
| 5 | " Maintainer: Ajit J. Thakkar (ajit AT unb.ca); <http://www.unb.ca/chem/ajit/> |
| 6 | " Version: 0.2 |
| 7 | " Last Change: 2004 Mar 27 |
| 8 | |
| 9 | if exists("current_compiler") |
| 10 | finish |
| 11 | endif |
| 12 | let current_compiler = "fortran_elf90" |
| 13 | |
| 14 | if exists(":CompilerSet") != 2 " older Vim always used :setlocal |
| 15 | command -nargs=* CompilerSet setlocal <args> |
| 16 | endif |
| 17 | |
| 18 | let s:cposet=&cpoptions |
| 19 | set cpoptions-=C |
| 20 | |
| 21 | CompilerSet errorformat=\%ALine\ %l\\,\ file\ %f, |
| 22 | \%C%tARNING\ --%m, |
| 23 | \%C%tATAL\ --%m, |
| 24 | \%C%tBORT\ --%m, |
| 25 | \%+C%\\l%.%#\., |
| 26 | \%C%p\|, |
| 27 | \%C%.%#, |
| 28 | \%Z%$, |
| 29 | \%-G%.%# |
| 30 | CompilerSet makeprg=elf90 |
| 31 | |
| 32 | let &cpoptions=s:cposet |
| 33 | unlet s:cposet |