blob: 11067224fe4933b624fef2a917107f435b7096e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
" Compiler: GNU Fortran Compiler
" Maintainer: H Xu <xuhdev@gmail.com>
" Version: 0.1.3
" Last Change: 2012 Apr 30
" 2024 Apr 03 by The MNV Project (removed :CompilerSet definition)
" Homepage: http://www.mnv.org/scripts/script.php?script_id=3496
" https://bitbucket.org/xuhdev/compiler-gfortran.mnv
" License: Same as MNV
if exists('current_compiler')
finish
endif
let current_compiler = 'gfortran'
let s:keepcpo= &cpo
set cpo&mnv
CompilerSet errorformat=
\%A%f:%l.%c:,
\%-Z%trror:\ %m,
\%-Z%tarning:\ %m,
\%-C%.%#
let &cpo = s:keepcpo
unlet s:keepcpo
|